iview/test/routers/select.vue
梁灏 2f0b086d60 fixed #116
fixed #116
2016-12-08 22:34:52 +08:00

57 lines
1.7 KiB
Vue

<template>
<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>
</template>
<script>
export default {
data () {
return {
cityList: [
{
value: 'beijing',
label: '北京市'
},
{
value: 'shanghai',
label: '上海市'
},
{
value: 'shenzhen',
label: '深圳市'
},
{
value: 'hangzhou',
label: '杭州市'
},
{
value: 'nanjing',
label: '南京市'
},
{
value: 'chongqing',
label: '重庆市'
}
],
model11: '',
model12: []
}
},
methods: {
clear () {
// this.$refs.select.setQuery('');
this.$refs.select.clearSingleSelect();
}
}
}
</script>