Blame view

examples/routers/tag.vue 2.1 KB
382c000c   梁灏   Tag add type prop...
1
  <template>
456daf34   梁灏   support Tag
2
      <div>
2079c47b   梁灏   update Tag
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
          <Tag checkable>标签一</Tag>
          <Tag>标签二</Tag>
          <Tag v-if="show" closable @on-close="handleClose">标签三</Tag>
          <br><br>
          <Tag type="border" checkable>标签三</Tag>
          <Tag type="border" closable>标签四</Tag>
          <Tag type="dot">标签一</Tag>
          <Tag type="dot" closable>标签二</Tag>
          <br><br>
          <Tag closable color="blue" checkable>标签一</Tag>
          <Tag closable color="green" checkable>标签二</Tag>
          <Tag closable color="red" checkable>标签三</Tag>
          <Tag closable color="yellow" checkable>标签四</Tag>
          <br><br>
          <Tag type="border" closable color="blue" checkable>标签一</Tag>
          <Tag type="border" closable color="green">标签二</Tag>
          <Tag type="border" closable color="red">标签三</Tag>
          <Tag type="border" closable color="yellow">标签四</Tag>
          <br><br>
          <Tag type="dot" closable color="blue" checkable>标签一</Tag>
          <Tag type="dot" closable color="green">标签二</Tag>
          <Tag type="dot" closable color="red">标签三</Tag>
          <Tag type="dot" closable color="yellow">标签四</Tag>
          <br><br>
          <Tag v-for="item in count" :key="item" :name="item" closable @on-close="handleClose2">标签{{ item + 1 }}</Tag>
          <Button icon="ios-plus-empty" type="dashed" size="small" @click="handleAdd">添加标签</Button>
456daf34   梁灏   support Tag
29
      </div>
382c000c   梁灏   Tag add type prop...
30
31
  </template>
  <script>
382c000c   梁灏   Tag add type prop...
32
      export default {
3e855e34   梁灏   fixed #46
33
34
          data () {
              return {
2079c47b   梁灏   update Tag
35
36
                  show: true,
                  count: [0, 1, 2]
dc39cc31   daiyanze   Feature: Checkabl...
37
              };
3c01d81a   梁灏   fixed Modal bug,w...
38
39
          },
          methods: {
2079c47b   梁灏   update Tag
40
41
              handleClose () {
                  this.show = false;
dc39cc31   daiyanze   Feature: Checkabl...
42
              },
2079c47b   梁灏   update Tag
43
44
45
46
47
48
49
50
51
52
              handleAdd () {
                  if (this.count.length) {
                      this.count.push(this.count[this.count.length - 1] + 1);
                  } else {
                      this.count.push(0);
                  }
              },
              handleClose2 (event, name) {
                  const index = this.count.indexOf(name);
                  this.count.splice(index, 1);
3e855e34   梁灏   fixed #46
53
54
              }
          }
dc39cc31   daiyanze   Feature: Checkabl...
55
      };
382c000c   梁灏   Tag add type prop...
56
  </script>