You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.3 KiB
55 lines
1.3 KiB
|
6 years ago
|
<template>
|
||
|
|
<div :style="styleExternalIcon" class="svg-external-icon svg-icon" v-if="isExternal" v-on="$listeners"/>
|
||
|
|
<svg :class="className" aria-hidden="true" class="svg-icon" v-else v-on="$listeners">
|
||
|
|
<use :href="iconName"/>
|
||
|
|
</svg>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
import {isExternal} from '@/utils/validate'
|
||
|
|
|
||
|
|
export default {
|
||
|
|
name: 'SvgIcon',
|
||
|
|
props: {
|
||
|
|
icon: {
|
||
|
|
type: String,
|
||
|
|
required: true
|
||
|
|
},
|
||
|
|
className: {
|
||
|
|
type: String,
|
||
|
|
default: ''
|
||
|
|
}
|
||
|
|
},
|
||
|
|
computed: {
|
||
|
|
isExternal() {
|
||
|
|
return isExternal(this.icon)
|
||
|
|
},
|
||
|
|
iconName() {
|
||
|
|
return `#icon-${this.icon}`
|
||
|
|
},
|
||
|
|
styleExternalIcon() {
|
||
|
|
return {
|
||
|
|
mask: `url(${this.icon}) no-repeat 50% 50%`,
|
||
|
|
'-webkit-mask': `url(${this.icon}) no-repeat 50% 50%`
|
||
|
|
}
|
||
|
|
}
|
||
|
|
},
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style>
|
||
|
|
.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>
|