iview/examples/routers/select.vue

35 lines
827 B
Vue
Raw Normal View History

<template>
2017-04-27 17:35:47 +08:00
<div style="width: 200px;margin: 100px;">
2017-04-28 11:16:40 +08:00
<i-select v-model="model" filterable clearable style="width:200px">
<i-option :value="option.value" v-for="option in options" :key="option">{{option.label}}</i-option>
</i-select>
2017-04-27 17:35:47 +08:00
</div>
</template>
2017-04-22 14:00:10 +08:00
<script>
export default {
data () {
return {
2017-04-28 11:16:40 +08:00
model: 1,
options: [
]
}
2017-04-28 11:16:40 +08:00
},
mounted () {
this.options = [{
label: '全部',
value: 0
},{
label: '苹果',
value: 1
},{
label: '香蕉',
value: 2
},{
label: '西瓜',
value: 3
}];
}
}
2017-04-22 14:00:10 +08:00
</script>