iview/examples/components/test.vue

40 lines
1.1 KiB
Vue
Raw Normal View History

<template>
2017-07-17 17:05:10 +08:00
<Select v-model="model1" style="width:200px">
<Option v-for="item in cityList" :value="item.value" :key="item.value">{{ item.label }}</Option>
</Select>
</template>
<script>
export default {
2017-07-17 17:05:10 +08:00
data () {
return {
cityList: [
{
value: 'beijing',
label: '北京市'
},
{
value: 'shanghai',
label: '上海市'
},
{
value: 'shenzhen',
label: '深圳市'
},
{
value: 'hangzhou',
label: '杭州市'
},
{
value: 'nanjing',
label: '南京市'
},
{
value: 'chongqing',
label: '重庆市'
}
],
model1: ''
}
2017-06-09 16:44:24 +08:00
}
}
</script>