开发一个项目时总会碰到使用图标的问题,如果小图片太多,就要请求多个资源,使用雪碧图的话,更新图标和制作都挺麻烦的,并且使用时要各种定位找到相应位置。那么svg的优点是什么呢?
SVG 是一种基于 XML 语法的图像格式,全称是可缩放矢量图(Scalable Vector Graphics)。其他图像格式都是基于像素处理的,SVG 则是属于对图像的形状描述,所以它本质上是文本文件,体积较小,且不管放大多少倍都不会失真。而Iconfont中有大量图标可以使用,下面是我对使用Iconfont图标的经验总结。
1.新建components/SvgIcon.vue组件
使用的是阿里巴巴的iconfont图标库,有三种方式可以引用,我使用的是symbol方式
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"></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: 1em; height: 1em; vertical-align: -0.15em; fill: currentColor; overflow: hidden; } </style>
|
2 svg文件
新建src/icons/svg文件夹和src/icons/index.js文件
svg文件夹放从图标库中下载的svg文件
src/icons/index.js文件
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
| import Vue from 'vue' import SvgIcon from '@/components/SvgIcon.vue'
/* require.context("./test", false, /.test.js$/);这行代码就会去 test 文件夹(不包含子目录) 下面的找所有文件名以 .test.js 结尾的文件能被 require 的文件。 更直白的说就是 我们可以通过正则匹配引入相应的文件模块。 require.context有三个参数: directory:说明需要检索的目录 useSubdirectories:是否检索子目录 regExp: 匹配文件的正则表达式 */ //全局注册 Vue.component('svg-icon', SvgIcon)
const requireAll = requireContext => requireContext.keys().map(requireContext) const req = require.context('./svg', false, /\.svg$/) requireAll(req)
|
3 在main.js中引入
1
| import '@/icons/index.js'
|
4在组件中使用
1
| <svg-icon :icon-class="form"></svg-icon>
|
5配置
下载插件
1
| npm i svg-sprite-loader --save
|
在build/webpack.base.conf.js文件中,加入
1 2 3 4 5 6 7 8
| { test: /\.svg$/, loader: 'svg-sprite-loader', include: [resolve('src/icons')], options: { symbolId: 'icon-[name]' } },
|
总结
在icon-font的symbol使用方法中,一般是引入一个iconfont.js文件,但是这次并没有引入,主要是为了按需加载和便于添加新图标,不然每加入新的图标,就要覆盖iconfont.js文件一次,比较麻烦