7fa943eb
梁灏
init
|
1
|
<template>
|
e0f238f9
梁灏
Tag close not aut...
|
2
|
<div :class="classes" transition="fade">
|
9a039b16
YikaJ
Update tag.vue
|
3
4
5
6
7
|
<span :class="dotClasses" v-if="showDot"></span>
<span :class="textClasses">
<slot></slot>
</span>
<Icon v-if="closable" type="ios-close-empty" @click.stop="close"></Icon>
|
7fa943eb
梁灏
init
|
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
</div>
</template>
<script>
import Icon from '../icon';
import { oneOf } from '../../utils/assist';
const prefixCls = 'ivu-tag';
export default {
components: { Icon },
props: {
closable: {
type: Boolean,
default: false
},
color: {
validator (value) {
return oneOf(value, ['blue', 'green', 'red', 'yellow']);
}
|
382c000c
梁灏
Tag add type prop...
|
27
28
29
30
31
|
},
type: {
validator (value) {
return oneOf(value, ['border', 'dot']);
}
|
7fa943eb
梁灏
init
|
32
33
|
}
},
|
7fa943eb
梁灏
init
|
34
35
36
37
38
|
computed: {
classes () {
return [
`${prefixCls}`,
{
|
382c000c
梁灏
Tag add type prop...
|
39
40
41
|
[`${prefixCls}-${this.color}`]: !!this.color,
[`${prefixCls}-${this.type}`]: !!this.type,
[`${prefixCls}-closable`]: this.closable
|
7fa943eb
梁灏
init
|
42
|
}
|
b0893113
jingsam
add eslint
|
43
|
];
|
7fa943eb
梁灏
init
|
44
45
46
|
},
textClasses () {
return `${prefixCls}-text`;
|
382c000c
梁灏
Tag add type prop...
|
47
48
49
50
51
52
|
},
dotClasses () {
return `${prefixCls}-dot-inner`;
},
showDot () {
return !!this.type && this.type === 'dot';
|
7fa943eb
梁灏
init
|
53
54
55
56
|
}
},
methods: {
close (e) {
|
7fa943eb
梁灏
init
|
57
58
59
|
this.$emit('on-close', e);
}
}
|
b0893113
jingsam
add eslint
|
60
61
|
};
</script>
|