Commit 75dad873769f03af596386d795db439bd5f75a45
1 parent
01b8d340
add listener on Tree: on-toggle-expand
Showing
2 changed files
with
4 additions
and
1 deletions
Show diff stats
src/components/tree/node.vue
src/components/tree/tree.vue
| ... | ... | @@ -102,7 +102,6 @@ |
| 102 | 102 | }, |
| 103 | 103 | mounted () { |
| 104 | 104 | this.updateData(); |
| 105 | - | |
| 106 | 105 | this.$on('selected', ori => { |
| 107 | 106 | const nodes = findComponentsDownward(this, 'TreeNode'); |
| 108 | 107 | nodes.forEach(node => { |
| ... | ... | @@ -119,6 +118,9 @@ |
| 119 | 118 | this.$on('on-checked', () => { |
| 120 | 119 | this.$emit('on-check-change', this.getCheckedNodes()); |
| 121 | 120 | }); |
| 121 | + this.$on('toggle-expand', (payload) => { | |
| 122 | + this.$emit('on-toggle-expand', payload); | |
| 123 | + }); | |
| 122 | 124 | }, |
| 123 | 125 | watch: { |
| 124 | 126 | data () { | ... | ... |