1. 程式人生 > 實用技巧 >vue中使用svg圖片

vue中使用svg圖片

1.安裝依賴包 svg-sprite-loader

npm install svg-sprite-loader --save-dev

2.配置svg圖片使用svg-sprite-loader來編譯----在webpack.base.config.js中的配置修改

新增svg編譯

{
test: /\.svg$/,
loader: 'svg-sprite-loader',
include: [resolve('src/icons')],
options: {
symbolId: 'icon-[name]'
}
},

取消原來的url-loader編譯

exclude: [resolve('src/icons
')],


3.新建svg的子元件。

在src下新建資料夾及檔案SvgIcon/index.vue,index.vue中內容如下

<template>
<svg :class="svgClass" aria-hidden="true" v-on="$listeners">
<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: 1em; height: 1em; vertical
-align: -0.15em; fill: currentColor; overflow: hidden; } </style>


4.新建匯入svg的js檔案 --在src下新建icons資料夾,及icons資料夾下svg資料夾、index.js檔案, index.js檔案內容如下

這個檔案一方面可以把元件註冊一下,另一方面按需載入目錄下的所有svg圖片

import Vue from 'vue'
import SvgIcon from '@/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)

5.在main.js中使用剛剛新建的js檔案

import './icons'

以上就配置好了

使用方法:

1.下載svg圖片檔案

阿里雲提供的iconfont:https://www.iconfont.cn

2.下載svg格式的圖片,將下載下來的圖片放置到到專案中src下的icon中建的svg資料夾下

3.在使用的地方加上以下程式碼,期中test就是svg圖片的名稱

<svg-icon icon-class="test"></svg-icon>