iview/examples/routers/tree.vue
huixisheng c9c5e751ae [change] optimize the webapack config
[change] rename test to examples
2017-03-03 22:38:40 +08:00

41 lines
1.1 KiB
Vue

<template>
<div>
<Tree :data="baseData" show-checkbox></Tree>
<div @click="c">change</div>
</div>
</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>'
}]
}]
}]
}
},
methods: {
c () {
this.baseData[0].expand = false;
}
}
}
</script>