我是靠谱客的博主 单薄香水,最近开发中收集的这篇文章主要介绍Vue2 使用svg第二步:vue中vue.config.js中的配置:第三步:在src文件目录下,新建一个icons文件,icons里面的svg文件是需要用到的svg矢量图 第四步:在components下面新建一个SvgIcon文件第五步:main.js引入第六步:在需要用到的组件中使用:,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
第一步:安装依赖:
npm i svg-sprite-loader --save
第二步:vue中vue.config.js中的配置:
//配置 svg-icon 直接加到module.exports = {}里
chainWebpack(config) {
const svgRule = config.module.rule("svg");
// 清除已有的所有 loader。
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");
}
第三步:在src文件目录下,新建一个icons文件,icons里面的svg文件是需要用到的svg矢量图
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)
第四步:在components下面新建一个SvgIcon文件
index.vue
<template>
<!-- <div v-if="isExternal" :style="styleExternalIcon" class="svg-external-icon svg-icon" v-on="$listeners" /> -->
<svg :class="svgClass" aria-hidden="true" v-on="$listeners">
<use :xlink:href="iconName" />
</svg>
</template>
<script>
// doc: https://panjiachen.github.io/vue-element-admin-site/feature/component/svg-icon.html#usage
export default {
name: 'SvgIcon',
props: {
iconClass: {
type: String,
required: true
},
className: {
type: String,
default: ''
}
},
computed: {
//检查URL是否合理
isExternal() {
return /^(https?:|mailto:|tel:)/.test(this.iconClass)
},
iconName() {
return `#icon-${this.iconClass}`
},
svgClass() {
if (this.className) {
return 'svg-icon ' + this.className
} else {
return 'svg-icon'
}
},
styleExternalIcon() {
return {
mask: `url(${this.iconClass}) no-repeat 50% 50%`,
'-webkit-mask': `url(${this.iconClass}) no-repeat 50% 50%`
}
}
}
}
</script>
<style scoped>
.svg-icon {
width: 1em;
height: 1em;
vertical-align: -0.15em;
fill: currentColor;
overflow: hidden;
}
.svg-external-icon {
background-color: currentColor;
mask-size: cover!important;
display: inline-block;
}
</style>
第五步:main.js引入
//引入 icon
import '@/icons' // icon
第六步:在需要用到的组件中使用:
<svg-icon icon-class="component" class="see"/>
最后
以上就是单薄香水为你收集整理的Vue2 使用svg第二步:vue中vue.config.js中的配置:第三步:在src文件目录下,新建一个icons文件,icons里面的svg文件是需要用到的svg矢量图 第四步:在components下面新建一个SvgIcon文件第五步:main.js引入第六步:在需要用到的组件中使用:的全部内容,希望文章能够帮你解决Vue2 使用svg第二步:vue中vue.config.js中的配置:第三步:在src文件目录下,新建一个icons文件,icons里面的svg文件是需要用到的svg矢量图 第四步:在components下面新建一个SvgIcon文件第五步:main.js引入第六步:在需要用到的组件中使用:所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复