首頁 > 軟體

svgicon元件使用方法範例詳解

2022-08-20 18:00:15

場景

最近在研發產品的過程中,ued切了很多svg的圖片;咱們在使用過程中除了背景圖再就是使用<img :src="url"/>進行使用。

在你進行公共元件編寫的時候,使用圖片路徑這種方式編寫完元件釋出之後;在再專案中引入已釋出的元件,在你執行程式碼的時候圖片路徑會附帶上當前執行的域名,導致圖片顯示不出來。

那麼怎麼解決這種問題呢?

  • 和UED進行溝通讓他們把這種svg的圖片做成icon;
  • 前端自己完成svg轉換icon,封裝Svgicon可複用元件;減少溝通成本;提高複用率來提升研發效率。

我們選擇的是第二種方式使用svg-sprite-loader進行svg到icon的轉換

編寫SvgIcon元件

元件檔案結構

src/packages/SvgIcon/index.vue

//src/packages/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 :href="iconName" rel="external nofollow"  />
  </svg>
</template>
<script>
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>

icons檔案結構

src/packages/icons

src/packages/icons/svg 該資料夾放置svg檔案

src/packages/icons/index.js

/**src/packages/icons/index.js**/
import Vue from 'vue'
import SvgIcon from '../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)

按照上面的步驟元件就編寫完了,可以進行釋出使用;

具體使用方法如下。

<svg-icon icon-class="PaperSearch" style="font-size: 64px"></svg-icon>

該元件還需結合使用svg-sprite-loader進行使用

www.npmjs.com/package/svg…

npm i svg-sprite-loader

vue.config.js設定

  chainWebpack: (config) => {
    config.module.rule('svg').exclude.add(resolve('src/packages/icons')).end()
    config.module
      .rule('icons')
      .test(/.svg$/)
      .include.add(resolve('src/packages/icons'))
      .end()
      .use('svg-sprite-loader')
      .loader('svg-sprite-loader')
      .options({
        symbolId: 'icon-[name]'
      })
      .end()
  }

最終效果

以上就是svgicon元件使用方法範例詳解的詳細內容,更多關於svgicon元件方法的資料請關注it145.com其它相關文章!


IT145.com E-mail:sddin#qq.com