vue项目中使用svg格式图片基本使用,手把手教学!会复制就行!!
创建vue-cli2.0略过一、下载svg包npm i svg-sprite-loader@4.1.3二、配置vue-config.js文件vue-config.js没有就自己创一个 放在项目根目录哦'use strict'const path = require('path')function resolve(dir) {return path.join(__dirname, dir)}modu
·
创建vue-cli2.0略过
一、下载svg包
npm i svg-sprite-loader@4.1.3
二、配置vue-config.js文件
vue-config.js 没有就自己创一个 放在项目根目录哦
'use strict'
const path = require('path')
function resolve(dir) {
return path.join(__dirname, dir)
}
module.exports = {
chainWebpack (config) {
// when there are many pages, it will cause too many meaningless requests
config.plugins.delete('prefetch')
// set svg-sprite-loader
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]'
})
.end()
}
}
三、创建文件
(1) 在src/icons目录下创建
src/icons
/svg # 保存图标
/index.js # 注册全局组件
svg目录下
index.js
import Vue from 'vue'
import SvgIcon from '@/components/SvgIcon'// svg component
// register globally
Vue.component('svg-icon', SvgIcon)
// 进行导入所有的svg格式 如果手动引入 需要依次引入
const req = require.context('./svg', false, /\.svg$/)
const requireAll = requireContext => requireContext.keys().map(requireContext)
requireAll(req)
(2)创建组件
src/componets/SvgIcon/index.vue
SvgIcon/index.vue
<template>
<div v-if="isExternal" :style="styleExternalIcon" class="svg-external-icon svg-icon" v-on="$listeners" />
<svg v-else :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
import { isExternal } from '@/utils/validate'
export default {
name: 'SvgIcon',
props: {
iconClass: {
type: String,
required: true
},
className: {
type: String,
default: ''
}
},
computed: {
isExternal() {
return isExternal(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>
(3)src/utils/validate.js
export function isExternal(path) {
return /^(https?:|mailto:|tel:)/.test(path)
}
(4)在main.js中引入
import '@/icons'
三、成功啦 直接去使用
<svg-icon icon-class="user"/>
使用注意点:
- 如果按照步骤全部完成不生效进行重启项目 或刷新页面
- 可能svg的图片有些是白色的 会和页面默认白色背景冲突 可换背景色进行查看
- 使用格式`<svg-icon icon-class="文件名"/>` 。这里的文件名就是在src/icons/svg下的文件名
- 如果还有需要其他 从官网下载直接放到icons/svg目录就可以啦
svg格式下载地址 :
1. https://www.iconfont.cn/ 阿里巴巴
2. https://icomoon.io/app/#/select 国外的一家网站 IcoMoon
更多推荐
已为社区贡献16条内容
所有评论(0)