Blame view

examples/routers/select.vue 31 KB
89828b5b   梁灏   update Select
1
  <!--<template>-->
4a9974f6   Graham Fairweather   Normalise v-ckick...
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
      <!--<div>-->
          <!--{{model10}} - -->
          <!--{{model11}}-->
          <!--<Select -->
              <!--v-model="model10" -->
              <!--style="width:260px">-->
              <!--<Option -->
                  <!--v-for="(item, index) in cityList" -->
                  <!--:value="item.value" -->
                  <!--:key="index">{{item.label}}</Option>-->
          <!--</Select>-->
          <!--<Select -->
              <!--v-model="model11" -->
              <!--style="width:260px">-->
              <!--<Option -->
                  <!--v-for="(item, index) in cityList" -->
                  <!--:value="item.value" -->
                  <!--:key="index">{{item.label}}</Option>-->
          <!--</Select>-->
      <!--</div>-->
89828b5b   梁灏   update Select
22
23
  <!--</template>-->
  <!--<script>-->
59aac107   Graham Fairweather   Add select exampl...
24
  <!--export default {-->
4a9974f6   Graham Fairweather   Normalise v-ckick...
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
      <!--data() {-->
          <!--return {-->
              <!--cityList: [],-->
              <!--model10: '',-->
              <!--model11: '',-->
              <!--model12: '',-->
          <!--};-->
      <!--},-->
      <!--mounted() {-->
          <!--setTimeout(() => {-->
              <!--this.cityList = [-->
                  <!--{-->
                      <!--value: 'beijing',-->
                      <!--label: '北京市',-->
                  <!--},-->
                  <!--{-->
                      <!--value: 'shanghai',-->
                      <!--label: '上海市',-->
                  <!--},-->
                  <!--{-->
                      <!--value: 'shenzhen',-->
                      <!--label: '深圳市',-->
                  <!--},-->
                  <!--{-->
                      <!--value: 'hangzhou',-->
                      <!--label: '杭州市',-->
                  <!--},-->
                  <!--{-->
                      <!--value: 'nanjing',-->
                      <!--label: '南京市',-->
                  <!--},-->
                  <!--{-->
                      <!--value: 'chongqing',-->
                      <!--label: '重庆市',-->
                  <!--},-->
              <!--];-->
          <!--}, 1000);-->
      <!--},-->
  <!--};-->
89828b5b   梁灏   update Select
64
65
  <!--</script>-->
  
e1b86bcf   梁灏   fixed #1865
66
  <!--<template>-->
4a9974f6   Graham Fairweather   Normalise v-ckick...
67
68
69
70
71
72
73
74
75
76
      <!--<div>-->
          <!--<Select v-model="value">-->
              <!--<Option -->
                  <!--v-for="item in list" -->
                  <!--:value="item.value" -->
                  <!--:label="item.label" -->
                  <!--:key="item.value"></Option>-->
          <!--</Select>-->
          <!--<Button @click="setList">set list</Button>-->
      <!--</div>-->
e1b86bcf   梁灏   fixed #1865
77
78
  <!--</template>-->
  <!--<script>-->
59aac107   Graham Fairweather   Add select exampl...
79
  <!--export default {-->
4a9974f6   Graham Fairweather   Normalise v-ckick...
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
      <!--data() {-->
          <!--return {-->
              <!--value: '',-->
              <!--list: [],-->
          <!--};-->
      <!--},-->
      <!--methods: {-->
          <!--setList() {-->
              <!--const list = [];-->
              <!--for (let i = 0; i < 400; i++) {-->
                  <!--list.push({-->
                      <!--value: `value${i}`,-->
                      <!--label: `label${i}`,-->
                  <!--});-->
              <!--}-->
              <!--this.list = list;-->
          <!--},-->
      <!--},-->
  <!--};-->
e1b86bcf   梁灏   fixed #1865
99
100
  <!--</script>-->
  
45103ca4   梁灏   fixed #2066
101
  <!--<template>-->
4a9974f6   Graham Fairweather   Normalise v-ckick...
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
      <!--<div style="width: 400px;margin: 50px;">-->
          <!--<div>data: {{model13}}</div>-->
          <!--<Row>-->
              <!--<Col -->
                  <!--span="12" -->
                  <!--style="padding-right:10px">-->
              <!--<Select-->
                  <!--v-model="model13"-->
                  <!--:remote-method="remoteMethod1"-->
                  <!--:loading="loading1"-->
                  <!--size="small"-->
                  <!--placeholder="提示提示"-->
                  <!--filterable-->
                  <!--remote-->
                  <!--transfer>-->
                  <!--<Option -->
                      <!--v-for="(option, index) in options1" -->
                      <!--:value="option.value" -->
                      <!--:key="index">{{option.label}}</Option>-->
              <!--</Select>-->
59aac107   Graham Fairweather   Add select exampl...
122
  <!--</Col>-->
4a9974f6   Graham Fairweather   Normalise v-ckick...
123
124
125
126
127
128
129
130
131
132
133
134
135
              <!--<Col span="12">-->
              <!--<Select-->
                  <!--v-model="model14"-->
                  <!--:remote-method="remoteMethod2"-->
                  <!--:loading="loading2"-->
                  <!--multiple-->
                  <!--filterable-->
                  <!--remote>-->
                  <!--<Option -->
                      <!--v-for="(option, index) in options2" -->
                      <!--:value="option.value" -->
                      <!--:key="index">{{option.label}}</Option>-->
              <!--</Select>-->
59aac107   Graham Fairweather   Add select exampl...
136
  <!--</Col>-->
4a9974f6   Graham Fairweather   Normalise v-ckick...
137
138
          <!--</Row>-->
      <!--</div>-->
45103ca4   梁灏   fixed #2066
139
140
  <!--</template>-->
  <!--<script>-->
59aac107   Graham Fairweather   Add select exampl...
141
  <!--export default {-->
4a9974f6   Graham Fairweather   Normalise v-ckick...
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
      <!--data() {-->
          <!--return {-->
              <!--model13: '',-->
              <!--loading1: false,-->
              <!--options1: [],-->
              <!--model14: [],-->
              <!--loading2: false,-->
              <!--options2: [],-->
              <!--list: [-->
                  <!--'Alabama',-->
                  <!--'Alaska',-->
                  <!--'Arizona',-->
                  <!--'Arkansas',-->
                  <!--'California',-->
                  <!--'Colorado',-->
                  <!--'Connecticut',-->
                  <!--'Delaware',-->
                  <!--'Florida',-->
                  <!--'Georgia',-->
                  <!--'Hawaii',-->
                  <!--'Idaho',-->
                  <!--'Illinois',-->
                  <!--'Indiana',-->
                  <!--'Iowa',-->
                  <!--'Kansas',-->
                  <!--'Kentucky',-->
                  <!--'Louisiana',-->
                  <!--'Maine',-->
                  <!--'Maryland',-->
                  <!--'Massachusetts',-->
                  <!--'Michigan',-->
                  <!--'Minnesota',-->
                  <!--'Mississippi',-->
                  <!--'Missouri',-->
                  <!--'Montana',-->
                  <!--'Nebraska',-->
                  <!--'Nevada',-->
                  <!--'New hampshire',-->
                  <!--'New jersey',-->
                  <!--'New mexico',-->
                  <!--'New york',-->
                  <!--'North carolina',-->
                  <!--'North dakota',-->
                  <!--'Ohio',-->
                  <!--'Oklahoma',-->
                  <!--'Oregon',-->
                  <!--'Pennsylvania',-->
                  <!--'Rhode island',-->
                  <!--'South carolina',-->
                  <!--'South dakota',-->
                  <!--'Tennessee',-->
                  <!--'Texas',-->
                  <!--'Utah',-->
                  <!--'Vermont',-->
                  <!--'Virginia',-->
                  <!--'Washington',-->
                  <!--'West virginia',-->
                  <!--'Wisconsin',-->
                  <!--'Wyoming',-->
              <!--],-->
          <!--};-->
      <!--},-->
      <!--methods: {-->
          <!--remoteMethod1(query) {-->
              <!--if (query !== '') {-->
                  <!--this.loading1 = true;-->
                  <!--setTimeout(() => {-->
                      <!--this.loading1 = false;-->
                      <!--const list = this.list.map((item) => ({-->
                          <!--value: item,-->
                          <!--label: item,-->
                      <!--}));-->
                      <!--this.options1 = list.filter((item) => item.label.toLowerCase().indexOf(query.toLowerCase()) > -1);-->
                  <!--}, 200);-->
              <!--} else {-->
                  <!--this.options1 = [];-->
              <!--}-->
          <!--},-->
          <!--remoteMethod2(query) {-->
              <!--if (query !== '') {-->
                  <!--this.loading2 = true;-->
                  <!--setTimeout(() => {-->
                      <!--this.loading2 = false;-->
                      <!--const list = this.list.map((item) => ({-->
                          <!--value: item,-->
                          <!--label: item,-->
                      <!--}));-->
                      <!--this.options2 = list.filter((item) => item.label.toLowerCase().indexOf(query.toLowerCase()) > -1);-->
                  <!--}, 200);-->
              <!--} else {-->
                  <!--this.options2 = [];-->
              <!--}-->
          <!--},-->
      <!--},-->
59aac107   Graham Fairweather   Add select exampl...
236
  <!--};-->
45103ca4   梁灏   fixed #2066
237
238
  <!--</script>-->
  
feb21a0a   梁灏   fixed #2893
239
  <!--<template>-->
4a9974f6   Graham Fairweather   Normalise v-ckick...
240
241
242
243
244
245
246
247
248
249
250
251
252
253
      <!--<div style="width: 300px">-->
          <!--<Select-->
              <!--v-model="model14"-->
              <!--:remote-method="remoteMethod2"-->
              <!--:loading="loading2"-->
              <!--multiple-->
              <!--filterable-->
              <!--remote>-->
              <!--<Option -->
                  <!--v-for="(option, index) in options2" -->
                  <!--:value="option.value" -->
                  <!--:key="index">{{option.label}}</Option>-->
          <!--</Select>-->
      <!--</div>-->
feb21a0a   梁灏   fixed #2893
254
255
  <!--</template>-->
  <!--<script>-->
59aac107   Graham Fairweather   Add select exampl...
256
  <!--export default {-->
4a9974f6   Graham Fairweather   Normalise v-ckick...
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
      <!--data() {-->
          <!--return {-->
              <!--model13: '',-->
              <!--loading1: false,-->
              <!--options1: [],-->
              <!--model14: [],-->
              <!--loading2: false,-->
              <!--options2: [],-->
              <!--list: ['a', 'b', 'c'],-->
          <!--};-->
      <!--},-->
      <!--methods: {-->
          <!--remoteMethod2(query) {-->
              <!--if (query !== '') {-->
                  <!--this.loading2 = true;-->
                  <!--setTimeout(() => {-->
                      <!--this.loading2 = false;-->
                      <!--const list = this.list.map((item) => ({-->
                          <!--value: item,-->
                          <!--label: item,-->
                      <!--}));-->
                      <!--this.options2 = list.filter((item) => item.label.toLowerCase().indexOf(query.toLowerCase()) > -1);-->
                  <!--}, 200);-->
              <!--} else {-->
                  <!--this.options2 = [];-->
              <!--}-->
          <!--},-->
      <!--},-->
59aac107   Graham Fairweather   Add select exampl...
285
  <!--};-->
feb21a0a   梁灏   fixed #2893
286
287
288
  <!--</script>-->
  
  
59aac107   Graham Fairweather   Add select exampl...
289
  <!--<template>-->
4a9974f6   Graham Fairweather   Normalise v-ckick...
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
      <!--<Row>-->
          <!--<Col -->
              <!--span="12" -->
              <!--style="padding-right:10px">-->
          <!--<Select-->
              <!--v-model="model13"-->
              <!--:remote-method="remoteMethod1"-->
              <!--:loading="loading1"-->
              <!--filterable-->
              <!--remote>-->
              <!--<Option -->
                  <!--v-for="(option, index) in options1" -->
                  <!--:value="option.value" -->
                  <!--:key="index">{{option.label}}</Option>-->
          <!--</Select>-->
59aac107   Graham Fairweather   Add select exampl...
305
  <!--</Col>-->
4a9974f6   Graham Fairweather   Normalise v-ckick...
306
307
308
309
310
311
312
313
314
315
316
317
318
          <!--<Col span="12">-->
          <!--<Select-->
              <!--v-model="model14"-->
              <!--:remote-method="remoteMethod2"-->
              <!--:loading="loading2"-->
              <!--multiple-->
              <!--filterable-->
              <!--remote>-->
              <!--<Option -->
                  <!--v-for="(option, index) in options2" -->
                  <!--:value="option.value" -->
                  <!--:key="index">{{option.label}}</Option>-->
          <!--</Select>-->
59aac107   Graham Fairweather   Add select exampl...
319
  <!--</Col>-->
4a9974f6   Graham Fairweather   Normalise v-ckick...
320
      <!--</Row>-->
59aac107   Graham Fairweather   Add select exampl...
321
322
323
  <!--</template>-->
  <!--<script>-->
  <!--export default {-->
4a9974f6   Graham Fairweather   Normalise v-ckick...
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
      <!--data() {-->
          <!--return {-->
              <!--model13: '',-->
              <!--loading1: false,-->
              <!--options1: [],-->
              <!--model14: [],-->
              <!--loading2: false,-->
              <!--options2: [],-->
              <!--list: [-->
                  <!--'Alabama',-->
                  <!--'Alaska',-->
                  <!--'Arizona',-->
                  <!--'Arkansas',-->
                  <!--'California',-->
                  <!--'Colorado',-->
                  <!--'Connecticut',-->
                  <!--'Delaware',-->
                  <!--'Florida',-->
                  <!--'Georgia',-->
                  <!--'Hawaii',-->
                  <!--'Idaho',-->
                  <!--'Illinois',-->
                  <!--'Indiana',-->
                  <!--'Iowa',-->
                  <!--'Kansas',-->
                  <!--'Kentucky',-->
                  <!--'Louisiana',-->
                  <!--'Maine',-->
                  <!--'Maryland',-->
                  <!--'Massachusetts',-->
                  <!--'Michigan',-->
                  <!--'Minnesota',-->
                  <!--'Mississippi',-->
                  <!--'Missouri',-->
                  <!--'Montana',-->
                  <!--'Nebraska',-->
                  <!--'Nevada',-->
                  <!--'New hampshire',-->
                  <!--'New jersey',-->
                  <!--'New mexico',-->
                  <!--'New york',-->
                  <!--'North carolina',-->
                  <!--'North dakota',-->
                  <!--'Ohio',-->
                  <!--'Oklahoma',-->
                  <!--'Oregon',-->
                  <!--'Pennsylvania',-->
                  <!--'Rhode island',-->
                  <!--'South carolina',-->
                  <!--'South dakota',-->
                  <!--'Tennessee',-->
                  <!--'Texas',-->
                  <!--'Utah',-->
                  <!--'Vermont',-->
                  <!--'Virginia',-->
                  <!--'Washington',-->
                  <!--'West virginia',-->
                  <!--'Wisconsin',-->
                  <!--'Wyoming',-->
              <!--],-->
          <!--};-->
      <!--},-->
      <!--methods: {-->
          <!--remoteMethod1(query) {-->
              <!--if (query !== '') {-->
                  <!--this.loading1 = true;-->
                  <!--setTimeout(() => {-->
                      <!--this.loading1 = false;-->
                      <!--const list = this.list.map((item) => ({-->
                          <!--value: item,-->
                          <!--label: item,-->
                      <!--}));-->
                      <!--this.options1 = list.filter((item) => item.label.toLowerCase().indexOf(query.toLowerCase()) > -1);-->
                  <!--}, 200);-->
              <!--} else {-->
                  <!--this.options1 = [];-->
              <!--}-->
          <!--},-->
          <!--remoteMethod2(query) {-->
              <!--if (query !== '') {-->
                  <!--this.loading2 = true;-->
                  <!--setTimeout(() => {-->
                      <!--this.loading2 = false;-->
                      <!--const list = this.list.map((item) => ({-->
                          <!--value: item,-->
                          <!--label: item,-->
                      <!--}));-->
                      <!--this.options2 = list.filter((item) => item.label.toLowerCase().indexOf(query.toLowerCase()) > -1);-->
                  <!--}, 200);-->
              <!--} else {-->
                  <!--this.options2 = [];-->
              <!--}-->
          <!--},-->
      <!--},-->
59aac107   Graham Fairweather   Add select exampl...
418
  <!--};-->
59aac107   Graham Fairweather   Add select exampl...
419
420
  <!--</script>-->
  
5ddf1bcf   梁灏   fixed #2451
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
  <!--<template>-->
      <!--<div id="app">-->
          <!--<input><br>-->
          <!--<i-select-->
              <!--v-model="model1"-->
              <!--style="width:200px"-->
          <!--&gt;-->
              <!--<i-option-->
                  <!--v-for="item in cityList"-->
                  <!--:value="item.value"-->
                  <!--:key="item.value"-->
              <!--&gt;{{item.label}}</i-option>-->
          <!--</i-select>-->
          <!--<br>-->
          <!--<i-select-->
              <!--v-model="model2"-->
              <!--size="small"-->
              <!--style="width:100px"-->
          <!--&gt;-->
              <!--<i-option-->
                  <!--v-for="item in cityList"-->
                  <!--:value="item.value"-->
                  <!--:key="item.value"-->
              <!--&gt;{{item.label}}</i-option>-->
          <!--</i-select>-->
          <!--<i-select-->
              <!--v-model="model3"-->
              <!--style="width:100px"-->
          <!--&gt;-->
              <!--<i-option-->
                  <!--v-for="item in cityList"-->
                  <!--:value="item.value"-->
                  <!--:key="item.value"-->
              <!--&gt;{{item.label}}</i-option>-->
          <!--</i-select>-->
          <!--<i-select-->
              <!--v-model="model4"-->
              <!--size="large"-->
              <!--style="width:100px"-->
          <!--&gt;-->
              <!--<i-option-->
                  <!--v-for="item in cityList"-->
                  <!--:value="item.value"-->
                  <!--:key="item.value"-->
              <!--&gt;{{item.label}}</i-option>-->
          <!--</i-select>-->
          <!--<br>-->
          <!--<i-select-->
              <!--v-model="model5"-->
              <!--disabled-->
              <!--style="width:200px"-->
          <!--&gt;-->
              <!--<i-option-->
                  <!--v-for="item in cityList"-->
                  <!--:value="item.value"-->
                  <!--:key="item.value"-->
              <!--&gt;{{item.label}}</i-option>-->
          <!--</i-select>-->
          <!--<i-select-->
              <!--v-model="model6"-->
              <!--style="width:200px"-->
          <!--&gt;-->
              <!--<i-option value="beijing">New York</i-option>-->
4a9974f6   Graham Fairweather   Normalise v-ckick...
484
485
486
              <!--<i-option -->
                  <!--value="shanghai" -->
                  <!--disabled>London</i-option>-->
5ddf1bcf   梁灏   fixed #2451
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
              <!--<i-option value="shenzhen">Sydney</i-option>-->
          <!--</i-select>-->
          <!--<br>-->
          <!--<i-select-->
              <!--v-model="model8"-->
              <!--clearable-->
              <!--style="width:200px"-->
          <!--&gt;-->
              <!--<i-option-->
                  <!--v-for="item in cityList"-->
                  <!--:value="item.value"-->
                  <!--:key="item.value"-->
              <!--&gt;{{item.label}}</i-option>-->
          <!--</i-select>-->
          <!--<br>-->
          <!--<i-select-->
              <!--v-model="model7"-->
              <!--style="width:200px"-->
          <!--&gt;-->
              <!--<option-group label="Hot Cities">-->
                  <!--<i-option-->
                      <!--v-for="item in cityList1"-->
                      <!--:value="item.value"-->
                      <!--:key="item.value"-->
                  <!--&gt;{{item.label}}</i-option>-->
              <!--</option-group>-->
              <!--<option-group label="Other Cities">-->
                  <!--<i-option-->
                      <!--v-for="item in cityList2"-->
                      <!--:value="item.value"-->
                      <!--:key="item.value"-->
                  <!--&gt;{{item.label}}</i-option>-->
              <!--</option-group>-->
          <!--</i-select>-->
          <!--<br>-->
          <!--<i-select-->
              <!--v-model="model9"-->
              <!--style="width:200px"-->
          <!--&gt;-->
4a9974f6   Graham Fairweather   Normalise v-ckick...
526
527
528
              <!--<i-option -->
                  <!--value="New York" -->
                  <!--label="New York">-->
5ddf1bcf   梁灏   fixed #2451
529
530
531
                  <!--<span>New York</span>-->
                  <!--<span style="float:right;color:#ccc">America</span>-->
              <!--</i-option>-->
4a9974f6   Graham Fairweather   Normalise v-ckick...
532
533
534
              <!--<i-option -->
                  <!--value="London" -->
                  <!--label="London">-->
5ddf1bcf   梁灏   fixed #2451
535
536
537
                  <!--<span>London</span>-->
                  <!--<span style="float:right;color:#ccc">U.K.</span>-->
              <!--</i-option>-->
4a9974f6   Graham Fairweather   Normalise v-ckick...
538
539
540
              <!--<i-option -->
                  <!--value="Sydney" -->
                  <!--label="Sydney">-->
5ddf1bcf   梁灏   fixed #2451
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
                  <!--<span>Sydney</span>-->
                  <!--<span style="float:right;color:#ccc">Australian</span>-->
              <!--</i-option>-->
          <!--</i-select>-->
          <!--<br>-->
          <!--<div>here</div>-->
          <!--<i-select-->
              <!--v-model="model10"-->
              <!--multiple-->
              <!--style="width:260px"-->
          <!--&gt;-->
              <!--<i-option-->
                  <!--v-for="item in cityList"-->
                  <!--:value="item.value"-->
                  <!--:key="item.value"-->
              <!--&gt;{{item.label}}</i-option>-->
          <!--</i-select>-->
          <!--<br>-->
          <!--<row>-->
              <!--<i-col-->
                  <!--span="12"-->
                  <!--style="padding-right:10px"-->
              <!--&gt;-->
                  <!--<i-select-->
                      <!--v-model="model11"-->
                      <!--filterable-->
                  <!--&gt;-->
                      <!--<i-option-->
                          <!--v-for="item in cityList"-->
                          <!--:value="item.value"-->
                          <!--:key="item.value"-->
                      <!--&gt;{{item.label}}</i-option>-->
                  <!--</i-select>-->
              <!--</i-col>-->
              <!--<i-col span="12">-->
                  <!--<i-select-->
                      <!--v-model="model12"-->
                      <!--filterable-->
                      <!--multiple-->
                  <!--&gt;-->
                      <!--<i-option-->
                          <!--v-for="item in cityList"-->
                          <!--:value="item.value"-->
                          <!--:key="item.value"-->
                      <!--&gt;{{item.label}}</i-option>-->
                  <!--</i-select>-->
              <!--</i-col>-->
          <!--</row>-->
          <!--<br>-->
          <!--<row>-->
              <!--<i-col-->
                  <!--span="12"-->
                  <!--style="padding-right:10px"-->
              <!--&gt;-->
                  <!--<i-select-->
                      <!--v-model="model13"-->
4a9974f6   Graham Fairweather   Normalise v-ckick...
597
598
                      <!--:remote-method="remoteMethod1"-->
                      <!--:loading="loading1"-->
5ddf1bcf   梁灏   fixed #2451
599
600
601
                      <!--filterable-->
                      <!--remote-->
                      <!--clearable-->
5ddf1bcf   梁灏   fixed #2451
602
603
604
605
606
607
608
609
610
611
612
                  <!--&gt;-->
                      <!--<i-option-->
                          <!--v-for="(option, index) in options1"-->
                          <!--:value="option.value"-->
                          <!--:key="index"-->
                      <!--&gt;{{option.label}}</i-option>-->
                  <!--</i-select>-->
              <!--</i-col>-->
              <!--<i-col span="12">-->
                  <!--<i-select-->
                      <!--v-model="model14"-->
4a9974f6   Graham Fairweather   Normalise v-ckick...
613
614
                      <!--:remote-method="remoteMethod2"-->
                      <!--:loading="loading2"-->
5ddf1bcf   梁灏   fixed #2451
615
616
617
                      <!--multiple-->
                      <!--filterable-->
                      <!--remote-->
4a9974f6   Graham Fairweather   Normalise v-ckick...
618
                      <!--clearable>-->
5ddf1bcf   梁灏   fixed #2451
619
620
621
622
623
624
625
626
627
628
629
630
                      <!--<i-option-->
                          <!--v-for="(option, index) in options2"-->
                          <!--:value="option.value"-->
                          <!--:key="index"-->
                      <!--&gt;{{option.label}}</i-option>-->
                  <!--</i-select>-->
              <!--</i-col>-->
          <!--</row>-->
      <!--</div>-->
  <!--</template>-->
  
  <!--<script>-->
4a9974f6   Graham Fairweather   Normalise v-ckick...
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
  <!--export default {-->
      <!--data() {-->
          <!--return {-->
              <!--cityList: [-->
                  <!--{-->
                      <!--value: 'New York',-->
                      <!--label: 'New York',-->
                  <!--},-->
                  <!--{-->
                      <!--value: 'London',-->
                      <!--label: 'London',-->
                  <!--},-->
                  <!--{-->
                      <!--value: 'Sydney',-->
                      <!--label: 'Sydney',-->
                  <!--},-->
                  <!--{-->
                      <!--value: 'Ottawa',-->
                      <!--label: 'Ottawa',-->
                  <!--},-->
                  <!--{-->
                      <!--value: 'Paris',-->
                      <!--label: 'Paris',-->
                  <!--},-->
                  <!--{-->
                      <!--value: 'Canberra',-->
                      <!--label: 'Canberra',-->
                  <!--},-->
              <!--],-->
              <!--cityList1: [-->
                  <!--{-->
                      <!--value: 'New York',-->
                      <!--label: 'New York',-->
                  <!--},-->
                  <!--{-->
                      <!--value: 'London',-->
                      <!--label: 'London',-->
                  <!--},-->
                  <!--{-->
                      <!--value: 'Sydney',-->
                      <!--label: 'Sydney',-->
                  <!--},-->
              <!--],-->
              <!--cityList2: [-->
                  <!--{-->
                      <!--value: 'Ottawa',-->
                      <!--label: 'Ottawa',-->
                  <!--},-->
                  <!--{-->
                      <!--value: 'Paris',-->
                      <!--label: 'Paris',-->
                  <!--},-->
                  <!--{-->
                      <!--value: 'Canberra',-->
                      <!--label: 'Canberra',-->
                  <!--},-->
              <!--],-->
              <!--model1: '',-->
              <!--model2: '',-->
              <!--model3: '',-->
              <!--model4: '',-->
              <!--model5: '',-->
              <!--model6: '',-->
              <!--model7: '',-->
              <!--model8: '',-->
              <!--model9: '',-->
              <!--model10: [],-->
              <!--model11: '',-->
              <!--model12: [],-->
              <!--model13: '',-->
              <!--loading1: false,-->
              <!--options1: [],-->
              <!--model14: [],-->
              <!--loading2: false,-->
              <!--options2: [],-->
              <!--list: [-->
                  <!--'Alabama',-->
                  <!--'Alaska',-->
                  <!--'Arizona',-->
                  <!--'Arkansas',-->
                  <!--'California',-->
                  <!--'Colorado',-->
                  <!--'Connecticut',-->
                  <!--'Delaware',-->
                  <!--'Florida',-->
                  <!--'Georgia',-->
                  <!--'Hawaii',-->
                  <!--'Idaho',-->
                  <!--'Illinois',-->
                  <!--'Indiana',-->
                  <!--'Iowa',-->
                  <!--'Kansas',-->
                  <!--'Kentucky',-->
                  <!--'Louisiana',-->
                  <!--'Maine',-->
                  <!--'Maryland',-->
                  <!--'Massachusetts',-->
                  <!--'Michigan',-->
                  <!--'Minnesota',-->
                  <!--'Mississippi',-->
                  <!--'Missouri',-->
                  <!--'Montana',-->
                  <!--'Nebraska',-->
                  <!--'Nevada',-->
                  <!--'New hampshire',-->
                  <!--'New jersey',-->
                  <!--'New mexico',-->
                  <!--'New york',-->
                  <!--'North carolina',-->
                  <!--'North dakota',-->
                  <!--'Ohio',-->
                  <!--'Oklahoma',-->
                  <!--'Oregon',-->
                  <!--'Pennsylvania',-->
                  <!--'Rhode island',-->
                  <!--'South carolina',-->
                  <!--'South dakota',-->
                  <!--'Tennessee',-->
                  <!--'Texas',-->
                  <!--'Utah',-->
                  <!--'Vermont',-->
                  <!--'Virginia',-->
                  <!--'Washington',-->
                  <!--'West virginia',-->
                  <!--'Wisconsin',-->
                  <!--'Wyoming',-->
              <!--],-->
          <!--};-->
      <!--},-->
5ddf1bcf   梁灏   fixed #2451
760
  
4a9974f6   Graham Fairweather   Normalise v-ckick...
761
762
763
764
      <!--methods: {-->
          <!--remoteMethod1(query) {-->
              <!--if (query !== '') {-->
                  <!--this.loading1 = true;-->
5ddf1bcf   梁灏   fixed #2451
765
  
4a9974f6   Graham Fairweather   Normalise v-ckick...
766
767
                  <!--setTimeout(() => {-->
                      <!--this.loading1 = false;-->
5ddf1bcf   梁灏   fixed #2451
768
  
4a9974f6   Graham Fairweather   Normalise v-ckick...
769
770
771
772
                      <!--const list = this.list.map((item) => ({-->
                          <!--value: item,-->
                          <!--label: item,-->
                      <!--}));-->
5ddf1bcf   梁灏   fixed #2451
773
  
4a9974f6   Graham Fairweather   Normalise v-ckick...
774
775
776
777
778
779
780
781
782
                      <!--this.options1 = list.filter((item) => item.label.toLowerCase().includes(query.toLowerCase()));-->
                  <!--}, 1500);-->
              <!--} else {-->
                  <!--this.options1 = [];-->
              <!--}-->
          <!--},-->
          <!--remoteMethod2(query) {-->
              <!--if (query !== '') {-->
                  <!--this.loading2 = true;-->
5ddf1bcf   梁灏   fixed #2451
783
  
4a9974f6   Graham Fairweather   Normalise v-ckick...
784
785
                  <!--setTimeout(() => {-->
                      <!--this.loading2 = false;-->
5ddf1bcf   梁灏   fixed #2451
786
  
4a9974f6   Graham Fairweather   Normalise v-ckick...
787
788
789
790
                      <!--const list = this.list.map((item) => ({-->
                          <!--value: item,-->
                          <!--label: item,-->
                      <!--}));-->
5ddf1bcf   梁灏   fixed #2451
791
  
4a9974f6   Graham Fairweather   Normalise v-ckick...
792
793
794
795
796
                      <!--this.options2 = list.filter((item) => item.label.toLowerCase().includes(query.toLowerCase()));-->
                  <!--}, 200);-->
              <!--} else {-->
                  <!--this.options2 = [];-->
              <!--}-->
5ddf1bcf   梁灏   fixed #2451
797
          <!--},-->
4a9974f6   Graham Fairweather   Normalise v-ckick...
798
799
      <!--},-->
  <!--};-->
5ddf1bcf   梁灏   fixed #2451
800
801
802
  <!--</script>-->
  
  
e355dd49   梁灏   add Select Component
803
  <template>
5ddf1bcf   梁灏   fixed #2451
804
      <div>
4a9974f6   Graham Fairweather   Normalise v-ckick...
805
806
807
808
809
810
811
812
          <Select
              v-model="model1"
              size="small"
              style="width:200px;" >
              <Option
                  v-for="item in cityList"
                  :value="item.value"
                  :key="item.value">{{item.label}}</Option>
5ddf1bcf   梁灏   fixed #2451
813
          </Select>
4a9974f6   Graham Fairweather   Normalise v-ckick...
814
815
816
817
818
819
820
821
822
          <Select
              v-model="model10"
              size="small"
              multiple
              style="width:260px" >
              <Option
                  v-for="item in cityList"
                  :value="item.value"
                  :key="item.value">{{item.label}}</Option>
5ddf1bcf   梁灏   fixed #2451
823
824
825
826
          </Select>
  
          <br><br>
  
4a9974f6   Graham Fairweather   Normalise v-ckick...
827
828
829
830
831
832
833
834
835
836
          <Select
              v-model="model1"
              size="large"
              style="width:200px"
              clearable
              @on-clear="onClear">
              <Option
                  v-for="item in cityList"
                  :value="item.value"
                  :key="item.value">{{item.label}}</Option>
5ddf1bcf   梁灏   fixed #2451
837
          </Select>
4a9974f6   Graham Fairweather   Normalise v-ckick...
838
839
840
841
842
843
844
845
846
          <Select
              v-model="model10"
              size="large"
              multiple
              style="width:260px">
              <Option
                  v-for="item in cityList"
                  :value="item.value"
                  :key="item.value">{{item.label}}</Option>
5ddf1bcf   梁灏   fixed #2451
847
848
849
850
          </Select>
  
          <br><br>
  
4a9974f6   Graham Fairweather   Normalise v-ckick...
851
852
853
854
855
856
857
          <Select
              v-model="model1"
              style="width:200px">
              <Option
                  v-for="item in cityList"
                  :value="item.value"
                  :key="item.value">{{item.label}}</Option>
5ddf1bcf   梁灏   fixed #2451
858
          </Select>
4a9974f6   Graham Fairweather   Normalise v-ckick...
859
860
861
862
863
864
865
866
          <Select
              v-model="model11"
              multiple
              style="width:260px">
              <Option
                  v-for="item in cityList"
                  :value="item.value"
                  :key="item.value">{{item.label}}</Option>
5ddf1bcf   梁灏   fixed #2451
867
          </Select>
4a9974f6   Graham Fairweather   Normalise v-ckick...
868
869
870
871
872
873
874
875
          <Select
              v-model="model10"
              multiple
              style="width:260px">
              <Option
                  v-for="item in cityList"
                  :value="item.value"
                  :key="item.value">{{item.label}}</Option>
5ddf1bcf   梁灏   fixed #2451
876
          </Select>
7dbde804   Sergio Crisostomo   add on-clear event
877
  
130ea92a   huanghong   update popper.js
878
          <br><br>
7dbde804   Sergio Crisostomo   add on-clear event
879
  
130ea92a   huanghong   update popper.js
880
          <br><br>
7dbde804   Sergio Crisostomo   add on-clear event
881
  
130ea92a   huanghong   update popper.js
882
883
884
885
886
887
          <br><br>
          <br><br>
          <br><br>
          <br><br>
          <br><br>
          <br><br>
4a9974f6   Graham Fairweather   Normalise v-ckick...
888
889
890
891
892
893
894
895
          <Select
              v-model="model10"
              multiple
              style="width:260px">
              <Option
                  v-for="item in cityList"
                  :value="item.value"
                  :key="item.value">{{item.label}}</Option>
130ea92a   huanghong   update popper.js
896
897
          </Select>
          <br><br>
7dbde804   Sergio Crisostomo   add on-clear event
898
  
130ea92a   huanghong   update popper.js
899
          <br><br>
7dbde804   Sergio Crisostomo   add on-clear event
900
  
130ea92a   huanghong   update popper.js
901
902
903
904
905
906
          <br><br>
          <br><br>
          <br><br>
          <br><br>
          <br><br>
          <br><br>
4a9974f6   Graham Fairweather   Normalise v-ckick...
907
908
909
910
911
912
913
914
          <Select
              v-model="model10"
              multiple
              style="width:260px">
              <Option
                  v-for="item in cityList"
                  :value="item.value"
                  :key="item.value">{{item.label}}</Option>
130ea92a   huanghong   update popper.js
915
          </Select>
59aac107   Graham Fairweather   Add select exampl...
916
      </div>
e355dd49   梁灏   add Select Component
917
  </template>
e355dd49   梁灏   add Select Component
918
  <script>
4a9974f6   Graham Fairweather   Normalise v-ckick...
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
  export default {
      data() {
          return {
              cityList: [
                  {
                      value: 'New York',
                      label: 'New York',
                  },
                  {
                      value: '中国',
                      label: '中国',
                  },
                  {
                      value: 'Sydney',
                      label: 'Sydney',
                  },
                  {
                      value: 'Ottawa',
                      label: 'Ottawa',
                  },
                  {
                      value: 'Paris',
                      label: 'Paris',
                  },
                  {
                      value: 'Canberra',
                      label: 'Canberra',
                  },
              ],
              model1: '',
              model10: [],
              model11: [],
          };
      },
      methods: {
          onClear() {
              console.log('onClear');
7dbde804   Sergio Crisostomo   add on-clear event
956
          },
4a9974f6   Graham Fairweather   Normalise v-ckick...
957
958
      },
  };
e1b86bcf   梁灏   fixed #1865
959
  </script>