目录结构(需要修改/新增的文件)
build\
webpack.base.conf.js
src\
components\
SvgIcon\
index.vue
icons\
svg\
*.svg
index.js
main.js
src目录下创建icons文件夹,里面创建svg文件夹和index.js文件,svg文件夹中存放扩展的.svg图标文件
创建SvgIcon组件,/src/components/SvgIcon/index.vue
<template>
<svg :class="svgClass" aria-hidden="true">
<use :xlink:href="iconName"></use>
</svg>
</template>
<script>
export default {
name: 'svg-icon',
props: {
iconClass: {
type: String,
required: true
},
className: {
type: String
}
},
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: 1.2em;
height: 1.2em;
vertical-align: -0.18em;
fill: currentColor;
overflow: hidden;
}
</style>
引入所有扩展的SVG图标文件,/src/icons/index.js
import Vue from 'vue'
import SvgIcon from '@/components/SvgIcon'// svg组件
// register globally
Vue.component('svg-icon', SvgIcon)
const requireAll = requireContext => requireContext.keys().map(requireContext)
const req = require.context('./svg', false, /\.svg$/)
requireAll(req)
main.js中引入icons,/src/main.js
import './icons'
下载svg-sprite-loader插件
cnpm i svg-sprite-loader --save
build配置,build/webpack.base.conf.js
加入
{
test: /\.svg$/,
loader: 'svg-sprite-loader',
include: [resolve('src/icons')],
options: {
symbolId: 'icon-[name]'
}
}
并在以下设置中添加exclude: [resolve('src/icons')],
{
test: /\.(png|jpe?g|gif|svg)(\?.*)?$/,
loader: 'url-loader',
exclude: [resolve('src/icons')],
options: {
limit: 10000,
name: utils.assetsPath('img/[name].[hash:7].[ext]')
}
},
使用
把<svg>的icon-class属性设置为.svg文件的名称来引用
<svg-icon icon-class="user"/>