iview/examples/routers/select.vue

71 lines
1.6 KiB
Vue
Raw Normal View History

<template>
2017-01-17 12:13:18 +08:00
<Row>
<i-col span="12" style="padding-right:10px">
2017-02-09 19:57:34 +08:00
<i-select :model.sync="model111" filterable>
<i-option v-for="item in cityList1" :value="item.value">{{ item.label }}</i-option>
2017-01-17 12:13:18 +08:00
</i-select>
</i-col>
2017-02-09 19:57:34 +08:00
</Row>
<Row>
<i-col span="12" style="padding-right:10px">
<i-select :model.sync="model112" filterable>
<i-option v-for="item in cityList2" :value="item.value">{{ item.label }}</i-option>
</i-select>
</i-col>
</Row>
<Row>
2017-01-17 12:13:18 +08:00
<i-col span="12">
<i-select :model.sync="model12" filterable multiple>
2017-02-09 19:57:34 +08:00
<i-option v-for="item in cityList1" :value="item.value">{{ item.label }}</i-option>
2017-01-17 12:13:18 +08:00
</i-select>
</i-col>
</Row>
</template>
<script>
2017-02-09 19:57:34 +08:00
const cityList = [
{
value: 'beijing',
label: '北京市'
},
{
value: 'shanghai',
label: '上海市'
},
{
value: 'shenzhen',
label: '深圳市'
},
{
value: 'hangzhou',
label: '杭州市'
},
{
value: 'nanjing',
label: '南京市'
},
{
value: 'chongqing',
label: '重庆市'
}
]
export default {
data () {
return {
2017-02-09 19:57:34 +08:00
cityList1: cityList,
model111: '',
cityList2: [],
model112: 'beijing',
2017-01-17 12:13:18 +08:00
model12: []
}
2017-02-09 19:57:34 +08:00
},
ready() {
this.model111 = 'hangzhou'
setTimeout(()=>{
this.cityList2 = cityList
}, 500)
}
}
2016-11-03 13:54:21 +08:00
</script>