iview/test/routers/select.vue

68 lines
2.3 KiB
Vue
Raw Normal View History

<template>
2016-11-03 13:54:21 +08:00
<!--<i-select :model.sync="model1" style="width:200px">-->
<!--<i-option v-for="item in cityList" :value="item.value">{{ item.label }}</i-option>-->
<!--</i-select>-->
<!--{{ model1 | json }}-->
<i-button @click="change">修改数据</i-button>
<!--<i-select :model.sync="model10" multiple style="width:240px" @on-change="datachange">-->
<!--<i-option v-for="item in cityList" :value="item.value">{{ item.label }}</i-option>-->
<!--</i-select>-->
<!--{{ model10 | json }}-->
<!--<i-select :model.sync="model11" filterable style="width:200px" @on-change="datachange">-->
<!--<i-option v-for="item in cityList" :value="item.value">{{ item.label }}</i-option>-->
<!--</i-select>-->
<!--{{ model11 | json }}-->
<i-select :model.sync="model12" filterable multiple style="width:240px" @on-change="datachange">
<i-option v-for="item in cityList" :value="item.value">{{ item.label }}</i-option>
</i-select>
{{ model12 | json }}
</template>
<script>
2016-11-03 13:54:21 +08:00
import { iSelect, iOption, iButton } from 'iview';
export default {
2016-11-03 13:54:21 +08:00
components: { iSelect, iOption, iButton },
data () {
return {
2016-11-03 13:54:21 +08:00
cityList: [
{
value: 'beijing',
label: '北京市'
},
{
value: 'shanghai',
label: '上海市'
},
{
value: 'shenzhen',
label: '深圳市'
},
{
value: 'hangzhou',
label: '杭州市'
},
{
value: 'nanjing',
label: '南京市'
},
{
value: 'chongqing',
label: '重庆市'
}
],
model1: '',
model10: [],
model11: '',
model12: []
}
},
methods: {
2016-11-03 13:54:21 +08:00
change () {
this.cityList.splice(2, 1);
},
datachange (data) {
console.log(data);
}
}
}
2016-11-03 13:54:21 +08:00
</script>