|
1
|
<template>
|
|
2
3
4
5
6
7
|
<div
v-if="isExternal"
:style="styleExternalIcon"
class="svg-external-icon svg-icon"
v-on="$listeners"
/>
|
|
8
9
10
11
12
13
14
|
<svg v-else :class="svgClass" aria-hidden="true" v-on="$listeners">
<use :xlink:href="iconName" />
</svg>
</template>
<script>
// doc: https://panjiachen.github.io/vue-element-admin-site/feature/component/svg-icon.html#usage
|
|
15
|
import { isExternal } from "@/utils/validate";
|
|
16
17
|
export default {
|
|
18
|
name: "SvgIcon",
|
|
19
20
21
|
props: {
iconClass: {
type: String,
|
|
22
|
required: true,
|
|
23
24
25
|
},
className: {
type: String,
|
|
26
27
|
default: "",
},
|
|
28
29
30
|
},
computed: {
isExternal() {
|
|
31
|
return isExternal(this.iconClass);
|
|
32
33
|
},
iconName() {
|
|
34
|
return `#icon-${this.iconClass}`;
|
|
35
36
37
|
},
svgClass() {
if (this.className) {
|
|
38
|
return "svg-icon " + this.className;
|
|
39
|
} else {
|
|
40
|
return "svg-icon";
|
|
41
42
43
44
45
|
}
},
styleExternalIcon() {
return {
mask: `url(${this.iconClass}) no-repeat 50% 50%`,
|
|
46
47
48
49
50
|
"-webkit-mask": `url(${this.iconClass}) no-repeat 50% 50%`,
};
},
},
};
|
|
51
52
53
54
55
56
57
58
59
60
61
62
63
|
</script>
<style scoped>
.svg-icon {
width: 1em;
height: 1em;
vertical-align: -0.15em;
fill: currentColor;
overflow: hidden;
}
.svg-external-icon {
background-color: currentColor;
|
|
64
|
mask-size: cover !important;
|
|
65
66
67
|
display: inline-block;
}
</style>
|