Blame view

test/routers/select.vue 1.72 KB
e355dd49   梁灏   add Select Component
1
  <template>
2f0b086d   梁灏   fixed #116
2
3
4
5
6
7
8
9
10
11
12
13
14
      <i-button @click="clear">clear</i-button>
      <Row>
          <i-col span="12" style="padding-right:10px">
              <i-select :model.sync="model11" filterable v-ref:select clearable>
                  <i-option v-for="item in cityList" :value="item.value">{{ item.label }}</i-option>
              </i-select>
          </i-col>
          <i-col span="12">
              <i-select :model.sync="model12" filterable multiple>
                  <i-option v-for="item in cityList" :value="item.value">{{ item.label }}</i-option>
              </i-select>
          </i-col>
      </Row>
e355dd49   梁灏   add Select Component
15
16
  </template>
  <script>
e355dd49   梁灏   add Select Component
17
      export default {
e355dd49   梁灏   add Select Component
18
19
          data () {
              return {
3e855e34   梁灏   fixed #46
20
21
22
23
24
25
26
27
28
29
30
31
32
                  cityList: [
                      {
                          value: 'beijing',
                          label: '北京市'
                      },
                      {
                          value: 'shanghai',
                          label: '上海市'
                      },
                      {
                          value: 'shenzhen',
                          label: '深圳市'
                      },
0f4ccf44   梁灏   release 0.9.9
33
34
35
36
37
38
39
40
41
42
43
44
                      {
                          value: 'hangzhou',
                          label: '杭州市'
                      },
                      {
                          value: 'nanjing',
                          label: '南京市'
                      },
                      {
                          value: 'chongqing',
                          label: '重庆市'
                      }
3e855e34   梁灏   fixed #46
45
                  ],
2f0b086d   梁灏   fixed #116
46
47
48
49
50
51
52
53
                  model11: '',
                  model12: []
              }
          },
          methods: {
              clear () {
  //                this.$refs.select.setQuery('');
                  this.$refs.select.clearSingleSelect();
e355dd49   梁灏   add Select Component
54
55
56
              }
          }
      }
3e855e34   梁灏   fixed #46
57
  </script>