提交代码
This commit is contained in:
63
src/components/SvgIcon/index.vue
Normal file
63
src/components/SvgIcon/index.vue
Normal file
@ -0,0 +1,63 @@
|
||||
<template >
|
||||
<!---外部图标-->
|
||||
<div
|
||||
v-bind="$attrs"
|
||||
v-if="isExternal"
|
||||
:style="styleExternalIcon"
|
||||
class="svg-external-icon svg-icon"
|
||||
:class="className"
|
||||
/>
|
||||
<!--内部图标-->
|
||||
<svg v-else class="svg-icon" :class="className" aria-hidden="true" v-bind="$attrs">
|
||||
<use :xlink:href="iconName" />
|
||||
</svg>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { isExternal as external } from '@/utils/validate'
|
||||
import { defineProps, computed } from 'vue'
|
||||
const props = defineProps({
|
||||
// icon 图标
|
||||
icon: {
|
||||
type: String,
|
||||
required: true
|
||||
},
|
||||
// 图标类名
|
||||
className: {
|
||||
type: String,
|
||||
default: ''
|
||||
}
|
||||
})
|
||||
|
||||
/**
|
||||
* 判断是否为外部图标
|
||||
*/
|
||||
const isExternal = computed(() => external(props.icon))
|
||||
/**
|
||||
* 外部图标样式
|
||||
*/
|
||||
const styleExternalIcon = computed(() => ({
|
||||
mask: `url(${props.icon}) no-repeat 50% 50%`,
|
||||
'-webkit-mask': `url(${props.icon}) no-repeat 50% 50%`
|
||||
}))
|
||||
/**
|
||||
* 项目内图标
|
||||
*/
|
||||
const iconName = computed(() => `#icon-${props.icon}`)
|
||||
</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>
|
Reference in New Issue
Block a user