Blame view

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