安装依赖
读取svg信息,去除svg中的无用标签,精简结构
npm install svgo svgo-loader --save-dev
SVG Sprite插件
npm install svg-sprite-loader --save-dev
配置webpack
{
test: /\.svg$/,
loader: 'svg-sprite-loader',
include: [resolve('src/icons')],
options: {
symbolId: 'icon-[name]'
}
},
//下面的
exclude: [resolve('src/icons')],
目录结构:
##SvgIcon/index.vue :
<template>
<svg :class="svgClass" aria-hidden="true" v-on="$listeners">
<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>
icons/svg or index.js
svg : 是svg图片所在,
index.js:
import Vue from 'vue'
import SvgIcon from '@/components/SvgIcon'
Vue.component('svg-icon', SvgIcon)
const req = require.context('./svg', true, /\.svg$/);
const requireAll = requireContext => requireContext.keys().map(requireContext);
requireAll(req);
main.js
//最后在main.js 引入
// 引入SVG
import './icons'
SVG效果:
class-name: 是设置类名,
icon-class : svg 图片名称 ----从iconfont官网上下载的 —名称是tel_line