index.vue
1019 Bytes
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
<template>
<i class="zui-icon" :class="classRender" :style="styleRender" @click="onClick">
<div v-if="info || dot" class="zui-info" :class="{ dot: dot }">{{ info }}</div>
</i>
</template>
<script>
export default {
name: 'Icon',
props: {
name: {
type: String,
default: '',
},
fontFamily: {
type: String,
default: 'iconfont',
},
classPrefix: {
type: String,
default: 'icon-'
},
size: String,
color: String,
info: [Number, String],
dot: Boolean,
},
computed: {
classRender: function() {
var fontFamily = this.fontFamily || '';
var iconClass = this.classPrefix + this.name;
return [fontFamily, iconClass]
},
styleRender: function() {
return {
fontSize: this.size,
color: this.color
}
},
},
methods: {
onClick: function() {
if (this.$listeners['click']) {
this.$emit('click');
}
}
}
}
</script>
<style>
@import "./index.css";
</style>