382c000c
梁灏
Tag add type prop...
|
1
|
<template>
|
456daf34
梁灏
support Tag
|
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
|
<div>
<Tag>标签一</Tag>
<Tag>标签二</Tag>
<Tag closable>标签三</Tag>
<Tag closable color="blue">标签一</Tag>
<Tag closable color="green">标签二</Tag>
<Tag closable color="red">标签三</Tag>
<Tag closable color="yellow">标签四</Tag>
<br><br>
<Tag type="dot">标签一</Tag>
<Tag type="dot" closable>标签一</Tag>
<Tag type="dot" color="blue">标签一</Tag>
<Tag type="dot" color="blue" closable>标签一</Tag>
<Tag type="dot" color="green">标签一</Tag>
<Tag type="dot" color="green" closable>标签一</Tag>
<Tag type="dot" color="red">标签一</Tag>
<Tag type="dot" color="red" closable>标签一</Tag>
<Tag type="dot" color="yellow">标签一</Tag>
<Tag type="dot" color="yellow" closable>标签一</Tag>
<br><br>
<Tag type="border">标签一</Tag>
<Tag type="border" closable>标签一</Tag>
<Tag type="border" color="blue">标签一</Tag>
<Tag type="border" color="blue" closable>标签一</Tag>
<Tag type="border" color="green">标签一</Tag>
<Tag type="border" color="green" closable>标签一</Tag>
<Tag type="border" color="red">标签一</Tag>
<Tag type="border" color="red" closable>标签一</Tag>
<Tag type="border" color="yellow">标签一</Tag>
<Tag type="border" color="yellow" closable>标签一</Tag>
<Button type="primary" @click="modal1 = true">显示对话框</Button>
<br><br>
<Tag v-if="ccc" closable @on-close="clickTagClose">标签一</Tag>
</div>
|
382c000c
梁灏
Tag add type prop...
|
36
37
|
</template>
<script>
|
382c000c
梁灏
Tag add type prop...
|
38
|
export default {
|
3e855e34
梁灏
fixed #46
|
39
40
|
data () {
return {
|
3c01d81a
梁灏
fixed Modal bug,w...
|
41
|
modal1: false,
|
456daf34
梁灏
support Tag
|
42
43
|
loading: true,
ccc: true
|
3c01d81a
梁灏
fixed Modal bug,w...
|
44
45
46
47
|
}
},
methods: {
ok () {
|
6f340380
jingsam
fixed modal
|
48
49
50
|
setTimeout(() => {
this.modal1 = false;
}, 2000);
|
5f75101e
YikaJ
Update tag.vue
|
51
52
53
54
55
|
},
clickTag() {
console.log('click tag');
},
clickTagClose() {
|
456daf34
梁灏
support Tag
|
56
|
this.ccc = false;
|
5f75101e
YikaJ
Update tag.vue
|
57
|
console.log('click tag close-icon');
|
3e855e34
梁灏
fixed #46
|
58
59
|
}
}
|
382c000c
梁灏
Tag add type prop...
|
60
61
|
}
</script>
|