1
<template>
2
<Tree :data="data2" check-directly show-checkbox></Tree>
3 4 5
</template> <script> export default {
6
data () {
7
return {
8
data2: [
9
{
10
title: 'parent 1',
11
expand: true,
12 13
children: [ {
14 15 16 17
title: 'parent 1-1', expand: true, children: [ {
18
title: 'leaf 1-1-1'
19 20
}, {
21
title: 'leaf 1-1-2'
22 23
} ]
24 25
26
title: 'parent 1-2',
27
28 29
30
title: 'leaf 1-2-1'
31 32
33
34 35
36 37
38
}
39
]
40
41
42
43
</script>