iview/examples/routers/tree.vue

48 lines
1.6 KiB
Vue
Raw Normal View History

2019-08-27 09:42:40 +08:00
<template>
2020-01-13 08:56:38 +08:00
<Tree :data="data4" show-checkbox multiple></Tree>
2019-08-27 09:42:40 +08:00
</template>
<script>
export default {
data () {
return {
2020-01-13 08:56:38 +08:00
data4: [
2019-08-27 09:42:40 +08:00
{
title: 'parent 1',
expand: true,
2020-01-13 08:56:38 +08:00
selected: true,
2019-08-27 09:42:40 +08:00
children: [
{
title: 'parent 1-1',
expand: true,
2020-01-13 08:56:38 +08:00
disabled: true,
2019-08-27 09:42:40 +08:00
children: [
{
2020-01-13 08:56:38 +08:00
title: 'leaf 1-1-1',
disabled: true
2019-08-27 09:42:40 +08:00
},
{
title: 'leaf 1-1-2'
}
]
},
{
title: 'parent 1-2',
expand: true,
children: [
{
2020-01-13 08:56:38 +08:00
title: 'leaf 1-2-1',
checked: true
2019-08-27 09:42:40 +08:00
},
{
title: 'leaf 1-2-1'
}
]
}
]
}
]
}
}
}
</script>