index.vue
1.23 KB
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>
<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;
var parentClass = '';
if (this.$options && this.$options.propsData && this.$options.propsData.className) {
parentClass = this.$options.propsData.className;
}
return [fontFamily, iconClass, parentClass].join(' ');
},
styleRender: function() {
return `
${this.size ? `font-size: ${this.size};` : ''}
${this.size ? `height: ${this.size}; width: ${this.size};` : ''}
${this.color ? `color: ${this.color};` : ''}
`.trim();
},
},
}
</script>
<style lang="scss">
@import "./index.scss";
</style>