iview/test/routers/cascader.vue

59 lines
1.9 KiB
Vue
Raw Normal View History

<template>
2016-12-15 20:33:16 +08:00
<Cascader :data="data" change-on-select></Cascader>
</template>
<script>
export default {
data () {
return {
2016-11-15 19:17:54 +08:00
data: [{
value: 'beijing',
label: '北京',
children: [
{
value: 'gugong',
label: '故宫'
},
{
value: 'tiantan',
label: '天坛'
},
{
value: 'wangfujing',
label: '王府井'
}
]
2016-11-15 19:17:54 +08:00
}, {
value: 'jiangsu',
label: '江苏',
children: [
{
value: 'nanjing',
label: '南京',
children: [
{
value: 'fuzimiao',
label: '夫子庙',
}
]
},
{
value: 'suzhou',
label: '苏州',
children: [
{
value: 'zhuozhengyuan',
label: '拙政园',
},
{
value: 'shizilin',
label: '狮子林',
}
]
}
],
2016-11-15 19:17:54 +08:00
}]
}
}
}
</script>