iconfont symbol對比svg-sprite-loader
iconfont symbol在SVG使用上簡單,但是對于后期修改不方便晴裹。
這是一種全新的使用方式,應該說這才是未來的主流炼蹦,也是平臺目前推薦的用法逮壁。相關
目前symbol方式的iconfont:
- 支持多色圖標了,不再受單色限制徐矩。
- 通過一些技巧滞时,支持像字體那樣,通過
font-size
,color
來調(diào)整樣式滤灯。 - 兼容性較差坪稽,支持 ie9+,及現(xiàn)代瀏覽器。
- 瀏覽器渲染svg的性能一般鳞骤,還不如png窒百。
使用iconfont的symbol方法
具體操作步驟
-
首先在iconfont官網(wǎng)批量下載svg圖片,可以操作
- 將下載好的SVG放在目錄src/icons/svg
- 安裝svg-sprite-loader
yarn add svg-sprite-loader --dev
- 配置vue.config.js,加入一段代碼
const path = require('path')
function resolve(dir) {
return path.join(__dirname, '.', dir)
}
module.exports = {
chainWebpack: config => {
config.module
.rule('svg')
.exclude.add(resolve('src/icons'))
.end()
config.module
.rule('icons')
.test(/\.svg$/)
.include.add(resolve('src/icons'))
.end()
.use('svg-sprite-loader')
.loader('svg-sprite-loader')
.options({
symbolId: 'icon-[name]'
})
}
}
5.在compoents下新建SvgIcon組件index.vue
<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>
-
在src/icons下新建index.js
import Vue from 'vue'
import SvgIcon from '@/components/SvgIcon'// svg component
// register globally
Vue.component('svg-icon', SvgIcon)
const req = require.context('./svg', false, /\.svg$/)
const requireAll = requireContext => requireContext.keys().map(requireContext)
requireAll(req)
-
在main.ts下添加import '@/icons'
OK,完成以上配置即可添加svg
<svg-icon icon-class="zhuye" />