33 lines
997 B
Vue
33 lines
997 B
Vue
<template>
|
|
<Tree v-model="baseData" show-checkbox></Tree>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
data () {
|
|
return {
|
|
baseData: [{
|
|
expand: true,
|
|
title: 'parent 1',
|
|
children: [{
|
|
title: 'parent 1-0',
|
|
expand: true,
|
|
disabled: true,
|
|
children: [{
|
|
title: 'leaf',
|
|
disableCheckbox: true
|
|
}, {
|
|
title: 'leaf',
|
|
}]
|
|
}, {
|
|
title: 'parent 1-1',
|
|
expand: true,
|
|
checked: true,
|
|
children: [{
|
|
title: '<span style="color: red">leaf</span>'
|
|
}]
|
|
}]
|
|
}]
|
|
}
|
|
}
|
|
}
|
|
</script>
|