vue如何引入svg图标?教你两个办法
Admin 2021-05-24 群英技术资讯 3678 次浏览
SVG是一种图像文件格式,意思为可缩放的矢量图形,是现在比较流行的图像文件格式之一,使用SVG格式我们就能够直接使用代码来描绘图像。那么我们如果要在vue中引入svg图标,要怎么做呢?
安装
yarn add svg-sprite-loader --dev
svg组件

index.vue
<!-- svg组件 -->
<template>
<svg class="svg-icon" :class="svgClass" aria-hidden="true">
<use :xlink:href="iconName" />
</svg>
</template>
<script>
export default {
name: 'SvgIcon',
props: {
// svg 的名称
svgName: {
type: String,
required: true
}
},
computed: {
iconName () {
return `#icon-${this.svgName}`
},
svgClass () {
if (this.svgName) {
return 'svg-icon' + this.svgName
} else {
return 'svg-icon'
}
}
}
}
</script>
<style lang="less" scoped>
.svg-icon {
width: 100px;
height: 100px;
vertical-align: -0.15em;
fill: currentColor;
overflow: hidden;
}
</style>
注册到全局

index.js
import Vue from 'vue'
import SvgIcon from '@/components/SvgIcon'
// 注册到全局
Vue.component('svg-icon', SvgIcon)
const requireAll = requireContext => requireContext.keys().map(requireContext)
const req = require.context('./svg', false, /\.svg$/)
requireAll(req)
vue.config.js
module.exports = {
chainWebpack: config => {
config.module
.rule('svg')
.exclude.add(resolve('src/assets/icons'))
.end()
config.module
.rule('icons')
.test(/\.svg$/)
.include.add(resolve('src/assets/icons'))
.end()
.use('svg-sprite-loader')
.loader('svg-sprite-loader')
.options({
symbolId: 'icon-[name]'
})
.end()
}
}
页面中使用
<!-- svg-name为svg名 --> <svg-icon svg-name="ic_home_news" />
npm install svg-sprite-loader --save-dev
vue.config.js中添加如下代码
const path = require('path');
function resolve(dir) {
// __dirname项目根目录的绝对路径
return path.join(__dirname, dir);
}
module.exports = {
chainWebpack: config => {
const svgRule = config.module.rule('svg');
// 清除已有的所有loader
// 如果你不这样做,接下来的loader会附加在该规则现有的loader之后
svgRule.uses.clear();
svgRule
.test(/\.svg$/)
.include.add(path.resolve(__dirname, './src/icons/svg'))
.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/svg'))
.end()
.use('file-loader')
.loader('file-loader');
},
}
建立如下的文件目录

SvgIcon.vue代码
<template>
<svg :class="svgClass" xmlns="http://www.w3.org/2000/svg">
<use :xlink:href="iconName" xmlns:xlink="http://www.w3.org/1999/xlink" />
</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>
svg文件夹下放svg图标
index.js代码
import Vue from 'vue';
import SvgIcon from '@/components/SvgIcon'; // svg组件
// register globally
Vue.component('svg-icon', SvgIcon);
const req = require.context('./svg', false, /\.svg$/);
const requireAll = requireContext => requireContext.keys().map(requireContext);
requireAll(req);
最后在main.js中引入
import './icons';
在页面中使用svg
icon-class是svg图标名 class-name是你要自定义的class类名
<svg-icon icon-class="features_ic_risk@1x" class-name="icon"></svg-icon>
文本介绍了vue引入svg图标的两种方式,需要的朋友可以参考学习,希望对大家学习有帮助,想要了解更多vue 引入svg图标的内容,可以关注其他相关文章。
文本转载自脚本之家
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:mmqy2019@163.com进行举报,并提供相关证据,查实之后,将立刻删除涉嫌侵权内容。
猜你喜欢
substr() 方法substr() 方法可在字符串中抽取从 start 下标开始的指定数目的字符。stringObject.substr(start,length)start:必需。要抽取的子串的起始下标。必须是数值。如
JavaScript设计模式有很多,之前我们了解原型模式、观察者模式、命令模式等等,这篇我们来了解一下Javascript单例模式,那么Javascript单例模式是什么呢?有什么用?以及怎样实现呢?下面我们一步步了解。
这篇文章主要介绍了解决vant title-active-color与title-inactive-color不生效问题,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
小程序间的跳转怎样做?我们知道小程序之间是可以实现互相跳转的,这样好处就是现实流量的循环。那么接下来就给大家分享一下实现小程序间的跳转的两种方式,感兴趣的朋友可以了解看看。
匹配对象。如果有省略号,对象可以有更多的属性。只检测自己的属性(Object.keys),忽略原型中的属性。对象语法支持特殊识别属性,快速属性,属性不支持尾逗号。
成为群英会员,开启智能安全云计算之旅
立即注册Copyright © QY Network Company Ltd. All Rights Reserved. 2003-2020 群英 版权所有
增值电信经营许可证 : B1.B2-20140078 粤ICP备09006778号 域名注册商资质 粤 D3.1-20240008