一. svg图标介绍
svg图标是用作Web应用程序或移动应用程序内的图标或图像按钮。
图标使用svg的优点:
- 可以轻松地按比例放大和缩小图标,具体取决于要在应用程序中显示的位置以及显示应用程序的屏幕尺寸。
- svg图标具有优于位图图形的优点,即按比例放大或缩小时它们仍然看起来不错。
- 位图图形在按比例放大时趋于像素化,而在按比例缩小时会失去质量(像素)。
这里只讨论svg的特点,不对svg图标的文件结构进行介绍。
二. svg图标的获取方式
漂亮和精致的图标ICON可以为整个UI界面加分不少,下面提供四个常用的免费SVG下载地址,提供给大家使用,基本可以满足绝大部分的使用需求。
这里推荐国内Iconfont-阿里巴巴矢量图标库
地址:https://www.iconfont.cn/ 介绍:阿里巴巴体验团队倾力打造,功能很强大且图标内容很丰富的矢量图标库,提供矢量图标下载、在线存储、格式转换等功能。
三. Vue项目使用svg图标的环境配置
安装依赖
npm install --save-dev svg-sprite-loader
四. Vue项目使用svg图标的项目配置
-
新建icon文件夹 放置icon图标,并在此文件夹中新建svg文件夹 放置svg文件,文件名尽量不要用中文。 -
svg依赖的配置 2.1 Vue 2.x 的配置 在webpack.base.conf.js 中配置允许svg依赖如下:
module: {
rules: [
{
test: /\.svg$/,
loader: 'svg-sprite-loader',
include: [resolve('src/assets/icons')],
options: {
symbolId: 'icon-[name]'
}
},
{
test: /\.(png|jpe?g|gif|svg)(\?.*)?$/,
loader: 'url-loader',
exclude: [resolve('src/assets/icons')],
options: {
limit: 10000,
name: utils.assetsPath('img/[name].[hash:7].[ext]')
}
}
]
},
2.2 Vue 3.x 的配置 在根目录新建vue.config.js 文件中配置如下:
module.exports = {
chainWebpack: config => {
const svgRule = config.module.rule('svg')
svgRule.uses.clear()
svgRule.exclude.add(/node_modules/)
svgRule
.test(/\.svg$/)
.use('svg-sprite-loader')
.loader('svg-sprite-loader')
.options({
symbolId: 'icon-[name]',
})
const imagesRule = config.module.rule('images')
imagesRule.exclude.add(resolve('src/assets/icons'))
config.module
.rule('images')
.test(/\.(png|jpe?g|gif|svg)(\?.*)?$/)
}
}
2.3 Vue 4.x 的配置 在根目录新建vue.config.js 文件中配置如下:
const path = require('path')
module.exports = {
chainWebpack: (config) => {
const svgRule = config.module.rule('svg')
svgRule.uses.clear()
svgRule
.test(/\.svg$/)
.include.add(path.resolve(__dirname, './src/icons'))
.end()
.use('svg-sprite-loader')
.loader('svg-sprite-loader')
.options({
symbolId: 'icon-[name]',
})
const fileRule = config.module.rule('file')
fileRule.uses.clear()
fileRule
.test(/\.svg$/)
.exclude.add(path.resolve(__dirname, './src/icons'))
.end()
.use('file-loader')
.loader('file-loader')
},
}
- 在
icon文件夹 中新建Svg.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: 1rem;
height: 1rem;
vertical-align: -0.25em;
fill: currentColor;
overflow: hidden;
}
</style>
- 在
icon文件夹 中新建index.js 文件
const requireAll = (requireContext) => requireContext.keys().map(requireContext)
const req = require.context('./svg', false, /\.svg$/)
requireAll(req)
- 在
main.js 文件中配置svg图标的相关设置
import '@/assets/icon'
import svgIcon from '@/assets/icon/Svg.vue'
Vue.component('svg-icon', svgIcon)
- 使用
svg 组件
...
<svg-icon icon-class="left" className="icon"></svg-icon>
...
其中icon-class 对应图标svg文件的名称;className 对应图标的css样式属性,设置相关属性可以改变svg图标的样式。
注意 若svg图标的颜色并没有变化,可以选择打开svg文件,删除style 标签里的每一项fill 样式设置.
|