yyzone
Version:
yyzone vue components and utils
16 lines (14 loc) • 363 B
JavaScript
import TreeNode from '../tree/tree-node'
export default {
components: {
TreeNode
},
methods: {
handleExpand(isExpand, data) {
this.$emit('handleExpand', isExpand, data || this.data)
},
handleChecked(isChecked, data) {
this.$emit('handleChecked', isChecked, data || this.data)
}
}
}