iview/test/routers/select.vue

51 lines
1.5 KiB
Vue
Raw Normal View History

<template>
2016-12-08 22:34:52 +08:00
<Row>
<i-col span="12" style="padding-right:10px">
2017-01-03 12:05:25 +08:00
<i-select :model.sync="model11" filterable>
2017-01-11 18:04:29 +08:00
<i-option v-for="item in cityList" :value="item.value">{{ item.label }}</i-option>
2016-12-08 22:34:52 +08:00
</i-select>
</i-col>
<i-col span="12">
<i-select :model.sync="model12" filterable multiple>
2017-01-11 18:04:29 +08:00
<i-option v-for="item in cityList" :value="item.value">{{ item.label }}</i-option>
2016-12-08 22:34:52 +08:00
</i-select>
</i-col>
</Row>
</template>
<script>
export default {
data () {
return {
2016-11-03 13:54:21 +08:00
cityList: [
{
value: 'beijing',
2017-01-11 18:04:29 +08:00
label: '北京市'
2016-11-03 13:54:21 +08:00
},
{
value: 'shanghai',
2017-01-11 18:04:29 +08:00
label: '上海市'
2016-11-03 13:54:21 +08:00
},
{
value: 'shenzhen',
2017-01-11 18:04:29 +08:00
label: '深圳市'
},
{
value: 'hangzhou',
label: '杭州市'
},
{
value: 'nanjing',
label: '南京市'
2016-12-02 15:15:54 +08:00
},
{
value: 'chongqing',
2017-01-11 18:04:29 +08:00
label: '重庆市'
2016-12-02 15:15:54 +08:00
}
2016-11-03 13:54:21 +08:00
],
model11: '',
2017-01-11 18:04:29 +08:00
model12: []
}
}
}
2016-11-03 13:54:21 +08:00
</script>