iview/test/routers/tree.vue
梁灏 34ee7b4a14 support Tree & add dispatch and broadcast methods
support Tree,many component add name $option;add dispatch and broadcast
methods, mixins it
2017-03-02 17:40:19 +08:00

48 lines
1.3 KiB
Vue

<template>
<div>
<Tree
v-model="treeData"
:show-checkbox="true"
:multiple="true"
@on-select-change="selectFn"
@on-check-change="checkFn"></Tree>
</div>
</template>
<script>
export default {
data: function() {
return {
treeData: [{
expand: true,
title: 'parent 1',
selected: false,
children: [{
title: 'parent 1-0',
expand: true,
disabled: true,
children: [{
title: 'leaf',
disableCheckbox: true
}, {
title: 'leaf',
}]
}, {
title: 'parent 1-1',
checked: true,
children: [{
title: '<span style="color: red">sss</span>',
}]
}]
}]
}
},
methods: {
selectFn(data){
console.log(data);
},
checkFn(data){
console.log(data);
}
}
}
</script>