1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
| <template>
| <!-- 添加fill -->
| <svg
| :class="getClassName"
| aria-hidden="true"
| >
| <use
| :xlink:href="getName"
| />
| </svg>
| </template>
|
| <script>
| export default {
| name: 'IconSvg',
| props: {
| name: {
| type: String,
| required: true
| },
| className: {
| type: String,
| default: ''
| }
| },
| computed: {
| getName () {
| return `#icon-${this.name}`
| },
| getClassName () {
| return [
| 'icon-svg',
| `icon-svg__${this.name}`,
| this.className && /\S/.test(this.className) ? `${this.className}` : ''
| ]
| }
| }
| }
| </script>
|
| <style scoped>
| .icon-svg {
| width: 18px;
| height: 18px;
| vertical-align: middle;
| fill: currentColor;
| overflow: hidden;
| mask-size: cover!important;
| display: inline-block;
| }
| </style>
|
|