vue專案中使用svg並設定大小顏色等樣式

彭世瑜發表於2020-01-11

1、安裝依賴

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

# 或者
yarn add svg-sprite-loader --dev

2、新建svg資源目錄
將svg資源放入此目錄,接下來會在配置檔案中該路徑

mkdir -p src/assets/icons

3、vue-cli 3.x 配置
vue.config.js

module.exports = {
  chainWebpack: config => {
    // svg rule loader
    const svgRule = config.module.rule('svg') // 找到svg-loader
    svgRule.uses.clear() // 清除已有的loader, 如果不這樣做會新增在此loader之後
    svgRule.exclude.add(/node_modules/) // 正則匹配排除node_modules目錄
    svgRule // 新增svg新的loader處理
      .test(/\.svg$/)
      .use('svg-sprite-loader')
      .loader('svg-sprite-loader')
      .options({
        symbolId: 'icon-[name]',
      })
    // 修改images loader 新增svg處理
    const imagesRule = config.module.rule('images')
    imagesRule.exclude.add(resolve('src/assets/icons'))
    config.module
      .rule('images')
      .test(/\.(png|jpe?g|gif|svg)(\?.*)?$/)
  }
}

4、建立SvgIcon.vue
src/compoments/SvgIcon.vue

<template>
  <svg :class="svgClass" aria-hidden="true">
    <use :xlink:href="iconName"></use>
  </svg>
</template>

<script>
export default {
  name: 'svg-icon',
  props: {
    iconClass: {
      type: String,
      required: true
    },
    className: {
      type: String
    }
  },
  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>

5、元件註冊
src/assets/icons/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('@/assets/icons', false, /\.svg$/)
// 載入目錄下的所有 svg 檔案
requireAll(req)

6、引入元件
main.js

import './assets/icons'

7、使用svg元件
iconClass: svg檔案的檔名
className: svg圖示的樣式類名

<template>
  <svg-icon iconClass='svg-name' className='icon'></svg-icon>
</template>

<style scoped>
.icon {
  width: 100px;
  height: 100px;
  color: red;
}
</style>

備註:
如果顏色沒有改變,開啟svg檔案,搜尋fill,都刪除

參考
在vue專案中使用svg,並能根據需要修改svg大小顏色等樣式

相關文章