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
52
53
54
55
56
57
58
59
60
| <template>
| <i style="display: inline-block">
| <Icon
| v-if="checkIcon(type) == 'icon'"
| :type="type"
| :size="size"
| :color="color"
| />
| <Icon
| v-if="checkIcon(type) == 'iconfont'"
| :custom="type"
| :size="size"
| :color="color"
| />
| <img
| v-if="checkIcon(type) == 'link'"
| :src="type"
| :width="size + 'px'"
| :height="size + 'px'"
| style="vertical-align: -0.125em"
| />
| </i>
| </template>
|
| <script>
| export default {
| name: "x-icon",
| props: {
| type: String,
| size: {
| type: [Number, String],
| default: 14,
| },
| color: String,
| },
| data() {
| return {};
| },
| methods: {
| checkIcon(v) {
| if (!v) {
| return "null";
| }
| if (
| v.indexOf("http://") == 0 ||
| v.indexOf("https://") == 0 ||
| v.indexOf(";base64,") > 0
| ) {
| return "link";
| } else if (v.indexOf("iconfont") > -1) {
| return "iconfont";
| } else {
| return "icon";
| }
| },
| },
| watch: {},
| mounted() {},
| };
| </script>
|
|