Blame view

src/components/SvgIcon/index.vue 1.49 KB
1 2 3 4 5
<!--
 * @Description: 
 * @Autor: renchao
 * @LastEditTime: 2023-07-25 16:08:55
-->
赵千 committed
6 7 8 9 10 11 12 13
<!--显示svg文件图标-->
<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>
14 15
  // doc: https://panjiachen.github.io/vue-element-admin-site/feature/component/svg-icon.html#usage
  import { isExternal } from '@/utils/validate'
赵千 committed
16

17 18 19 20 21 22 23 24 25 26
  export default {
    name: 'SvgIcon',
    props: {
      iconClass: {
        type: String,
        required: true
      },
      className: {
        type: String,
        default: ''
赵千 committed
27 28
      }
    },
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
    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%`
        }
赵千 committed
48 49 50 51 52 53
      }
    }
  }
</script>

<style scoped>
54 55 56 57 58 59 60
  .svg-icon {
    width: 1em;
    height: 1em;
    vertical-align: -0.15em;
    fill: currentColor;
    overflow: hidden;
  }
赵千 committed
61

62 63 64 65 66
  .svg-external-icon {
    background-color: currentColor;
    mask-size: cover !important;
    display: inline-block;
  }
赵千 committed
67
</style>