Blame view

examples/routers/tabs.vue 6.48 KB
fce83323   梁灏   Revert "update Ta...
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
  <!--<template>-->
      <!--<Tabs value="name1" :animated="false">-->
          <!--<Tab-pane label="test" name="test">-->
              <!--<Tabs type="card" v-bind:animated="true">-->
                  <!--<Tab-pane label="标签2一">标签2一的内容</Tab-pane>-->
                  <!--<Tab-pane label="标签2二">标签2二的内容</Tab-pane>-->
                  <!--<Tab-pane label="标签2三">标签2三的内容</Tab-pane>-->
              <!--</Tabs>-->
          <!--</Tab-pane>-->
          <!--<Tab-pane :label="label1" name="name1">-->
              <!--<Table :columns="columns1" :data="data1"></Table>-->
          <!--</Tab-pane>-->
          <!--<Tab-pane label="标签二" name="name2">-->
              <!--<Table :columns="columns1" :data="data1"></Table>-->
          <!--</Tab-pane>-->
          <!--<Tab-pane label="标签三" name="name3">-->
              <!--<Table :columns="columns1" :data="data1"></Table>-->
          <!--</Tab-pane>-->
      <!--</Tabs>-->
  <!--</template>-->
  <!--<script>-->
      <!--export default {-->
          <!--data () {-->
              <!--return {-->
                  <!--label1: (h) => {-->
                      <!--return h('div', [-->
                          <!--h('span', '标签一'),-->
                          <!--h('Button', 'button')-->
                      <!--]);-->
                  <!--},-->
                  <!--columns1: [-->
                      <!--{-->
                          <!--title: '姓名',-->
                          <!--key: 'name'-->
                      <!--},-->
                      <!--{-->
                          <!--title: '年龄',-->
                          <!--key: 'age'-->
                      <!--},-->
                      <!--{-->
                          <!--title: '地址',-->
                          <!--key: 'address'-->
                      <!--}-->
                  <!--],-->
                  <!--data1: [-->
                      <!--{-->
                          <!--name: '王小明',-->
                          <!--age: 18,-->
                          <!--address: '北京市朝阳区芍药居'-->
                      <!--},-->
                      <!--{-->
                          <!--name: '张小刚',-->
                          <!--age: 25,-->
                          <!--address: '北京市海淀区西二旗'-->
                      <!--},-->
                      <!--{-->
                          <!--name: '李小红',-->
                          <!--age: 30,-->
                          <!--address: '上海市浦东新区世纪大道'-->
                      <!--},-->
                      <!--{-->
                          <!--name: '周小伟',-->
                          <!--age: 26,-->
                          <!--address: '深圳市南山区深南大道'-->
                      <!--}-->
                  <!--]-->
              <!--}-->
          <!--}-->
      <!--}-->
  <!--</script>-->
  
  
  <!-- <template>
      <Tabs type="card" closable @on-tab-remove="handleTabRemove">
          <TabPane label="标签一" v-if="tab0">标签一的内容</TabPane>
          <TabPane label="标签二" v-if="tab1">标签二的内容</TabPane>
          <TabPane label="标签三" v-if="tab2">标签三的内容</TabPane>
      </Tabs>
  </template>
  <script>
      export default {
          data () {
              return {
                  tab0: true,
                  tab1: true,
                  tab2: true
              }
          },
          methods: {
              handleTabRemove (name) {
                  this['tab' + name] = false;
              }
          }
      }
  </script> -->
  
  <!--<template>-->
      <!--<div>-->
      <!--<Button type="ghost" @click="toFirst" size="small">to first</Button>-->
      <!--<Button type="ghost" @click="toLast" size="small">to last</Button>-->
      <!--<Tabs type="card" :animated="animated"  v-model="activeTab">-->
          <!--<TabPane v-for="tab in tabs" :key="tab" :label="'标签' + tab"  :name="tab+''" closable>标签{{ tab }}</TabPane>-->
          <!--<div slot="extra">-->
              <!--<Button type="ghost" @click="handleTabsAdd" size="small">增加</Button>-->
          <!--</div>-->
      <!--</Tabs>-->
      <!--</div>-->
  <!--</template>-->
  <!--<script>-->
      <!--export default {-->
          <!--data () {-->
              <!--return {-->
                  <!--tabs: 2,-->
                  <!--activeTab:"2",-->
                  <!--animated:true-->
              <!--}-->
          <!--},-->
          <!--methods: {-->
              <!--handleTabsAdd () {-->
                  <!--this.tabs ++;-->
                  <!--this.activeTab = this.tabs + '';-->
              <!--},-->
              <!--toFirst () {-->
                  <!--this.activeTab = '1';-->
              <!--},-->
              <!--toLast () {-->
                  <!--this.activeTab = this.tabs+'';-->
              <!--}-->
          <!--}-->
      <!--}-->
  <!--</script>-->
  
  <!--<template>-->
      <!--<div>-->
          <!--<Tabs type="card">-->
              <!--<TabPane v-for="tab in tabs" :key="tab" :label="'标签' + tab">标签{{ tab }}</TabPane>-->
          <!--</Tabs>-->
          <!--<Button type="ghost" @click="handleTabsAdd" size="small">增加</Button>-->
          <!--<Button type="ghost" @click="handleTabsMin" size="small">减少</Button>-->
      <!--</div>-->
  <!--</template>-->
  <!--<script>-->
      <!--export default {-->
          <!--data () {-->
              <!--return {-->
                  <!--tabs: 2-->
              <!--}-->
          <!--},-->
          <!--methods: {-->
              <!--handleTabsAdd () {-->
                  <!--this.tabs ++;-->
              <!--},-->
              <!--handleTabsMin () {-->
                  <!--this.tabs &#45;&#45;;-->
              <!--}-->
          <!--}-->
      <!--}-->
  <!--</script>-->
  
be3fbd24   marxy   Tabs add scroll
160
  <template>
fce83323   梁灏   Revert "update Ta...
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
      <div>
          <i-input></i-input>
          <Button type="ghost" @click="handleTabsAdd" size="small" slot="extra">增加</Button>
  
          <hr style="margin: 10px 0;">
          <Tabs type="card">
              <TabPane v-for="tab in tabs" :key="tab" :label="'Tab' + tab">
                  <div>
                      <h3>Some text...</h3>
                      <i-button>Some focusable content...{{ tab }}</i-button>
                  </div>
              </TabPane>
          </Tabs>
          <Tabs type="card">
              <TabPane label="标签一">标签一的内容</TabPane>
              <TabPane label="标签二" disabled>标签二的内容</TabPane>
              <TabPane label="标签三">标签三的内容</TabPane>
45dbc6fd   Sergio Crisostomo   Correct disabled ...
178
          </Tabs>
58efc281   Sergio Crisostomo   update example
179
      </div>
be3fbd24   marxy   Tabs add scroll
180
181
182
183
184
  </template>
  <script>
      export default {
          data () {
              return {
fce83323   梁灏   Revert "update Ta...
185
186
                  tabs: 2
              }
be3fbd24   marxy   Tabs add scroll
187
188
          },
          methods: {
fce83323   梁灏   Revert "update Ta...
189
190
              handleTabsAdd () {
                  this.tabs ++;
be3fbd24   marxy   Tabs add scroll
191
192
              }
          }
fce83323   梁灏   Revert "update Ta...
193
      }
8778b343   梁灏   init Menu components
194
  </script>
fce83323   梁灏   Revert "update Ta...