index.vue
946 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
<template>
<view class="zui-icon" :class="classRender" :style="styleRender">
<view v-if="info || dot" class="zui-info" :class="dot ? 'dot' : ''">{{ dot ? '' : info }}</view>
</view>
</template>
<script>
export default {
name: 'zui-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 `${this.size ? `font-size: ${this.size};` : ''} ${this.color ? `color: ${this.color}` : ''};`;
},
},
}
</script>
<style lang="scss">
@import "./index.scss";
</style>