Vue中icon图标问题的解决过程
公司组件做法
将地债实现相关代码记录下来方便之后使用,环境为 vue2
+ webpack4
安装
svg-sprite-loader
,在vue.config.js
中添加如下数据1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17module.exports = {
chainWebpack: config => {
// 对svg的处理 具体实现 <svg-icon icon-class="nav"></svg-icon> 有样式要求:<svg-icon class-name="className" icon-class="nav"></svg-icon>
config.module.rules.delete('svg') // 重点:删除默认配置中处理svg
config.module
.rule('svg-sprite-loader')
.test(/\.svg$/)
.include
.add(resolve('src/icons')) // 处理svg目录
.end()
.use('svg-sprite-loader')
.loader('svg-sprite-loader')
.options({
symbolId: 'icon-[name]'
}).end()
}在
src/icons
下创建svg
文件夹和index.js
文件,svg
文件夹用于放置下载好的svg
文件,而index.js
用于批量引入已经全局注册组件,因此需要在main.js
下添加import './icons'
,index.js
内容如下1
2
3
4
5
6
7
8
9
10import Vue from 'vue'
import SvgIcon from '@/components/SvgIcon'// svg组件
// 全局注册svg组件
Vue.component('svg-icon', SvgIcon)
const req = require.context('./svg', false, /\.svg$/)
const requireAll = requireContext => requireContext.keys().map(requireContext)
requireAll(req)创建
src/components
下创建svgIcon
组件1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43<template>
<svg :class="svgClass" aria-hidden="true">
<use :xlink:href="iconName"/>
</svg>
</template>
<script>
export default {
name: 'SvgIcon',
props: {
iconClass: {
type: String,
required: true
},
className: {
type: String,
default: ''
}
}
computed: {
iconName() {
return `#icon-${this.iconClass}`
},
svgClass() {
if (this.className) {
return 'svg-icon ' + this.className
} else {
return 'svg-icon'
}
}
}
}
</script>
<style scoped>
.svg-icon {
width: 1em;
height: 1em;
vertical-align: -0.15em;
fill: currentColor;
overflow: hidden;
}
</style>
本博客所有文章除特别声明外,均采用 CC BY-SA 4.0 协议 ,转载请注明出处!