溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

svgicon組件如何使用

發(fā)布時間:2022-08-24 16:53:55 來源:億速云 閱讀:147 作者:iii 欄目:開發(fā)技術(shù)

這篇文章主要介紹“svgicon組件如何使用”的相關(guān)知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“svgicon組件如何使用”文章能幫助大家解決問題。

場景

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

在你進行公共組件編寫的時候,使用圖片路徑這種方式編寫完組件發(fā)布之后;在再項目中引入已發(fā)布的組件,在你運行代碼的時候圖片路徑會附帶上當前運行的域名,導(dǎo)致圖片顯示不出來。

svgicon組件如何使用

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

  • 和UED進行溝通讓他們把這種svg的圖片做成icon;

  • 前端自己完成svg轉(zhuǎn)換icon,封裝Svgicon可復(fù)用組件;減少溝通成本;提高復(fù)用率來提升研發(fā)效率。

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

編寫SvgIcon組件

組件文件結(jié)構(gòu)

src/packages/SvgIcon/index.vue

//src/packages/SvgIcon/index.vue
<template>
  <div v-if="isExternal" : 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文件結(jié)構(gòu)

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)

按照上面的步驟組件就編寫完了,可以進行發(fā)布使用;

具體使用方法如下。

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

該組件還需結(jié)合使用svg-sprite-loader進行使用

www.npmjs.com/package/svg&hellip;

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組件如何使用

關(guān)于“svgicon組件如何使用”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識,可以關(guān)注億速云行業(yè)資訊頻道,小編每天都會為大家更新不同的知識點。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI