File tree 3 files changed +12
-13
lines changed
3 files changed +12
-13
lines changed Original file line number Diff line number Diff line change 1
1
# vue-tree
2
2
3
+ [ ![ Master Build] ( https://travis-ci.com/eidng8/vue-tree.svg?branch=master )] ( https://travis-ci.com/eidng8/vue-tree )
4
+ [ ![ Master Coverage] ( https://coveralls.io/repos/github/eidng8/vue-tree/badge.svg?branch=master )] ( https://coveralls.io/github/eidng8/vue-tree?branch=master )
5
+
3
6
A Vue.js tree view component with stable DOM tree. By stable, it means the
4
7
DOM structure will not change once it is rendered.
5
8
6
9
7
- ## Master Branch
8
- [ ![ Build] ( https://travis-ci.com/eidng8/vue-tree.svg?branch=master )] ( https://travis-ci.com/eidng8/vue-tree )
9
- [ ![ Coverage] ( https://coveralls.io/repos/github/eidng8/vue-tree/badge.svg?branch=master )] ( https://coveralls.io/github/eidng8/vue-tree?branch=master )
10
-
11
- ## Dev Branch
12
- [ ![ Build] ( https://travis-ci.com/eidng8/vue-tree.svg?branch=dev )] ( https://travis-ci.com/eidng8/vue-tree )
13
- [ ![ Coverage] ( https://coveralls.io/repos/github/eidng8/vue-tree/badge.svg?branch=dev )] ( https://coveralls.io/github/eidng8/vue-tree?branch=dev )
14
-
15
-
16
10
## Performance Consideration
17
11
18
12
The DOM structure of this component doesn't change once rendered.
Original file line number Diff line number Diff line change 26
26
>{{ tag.label }}</label>
27
27
</span>
28
28
</div>
29
- <ul v-if="hasChild " class="g8-tree__branch">
29
+ <ul v-if="expanded || item.rendered " class="g8-tree__branch">
30
30
<g8-tree-view v-for="(child, index) in item.children"
31
31
:key="index"
32
32
:item="child"
45
45
import {Component, Prop, Vue} from 'vue-property-decorator';
46
46
import {G8StateChangeEvent, G8TreeItem} from './types';
47
47
48
- @Component({
49
- name: 'g8-tree-view',
50
- })
48
+ @Component({name: 'g8-tree-view'})
51
49
export default class G8TreeView extends Vue {
52
50
@Prop() item!: G8TreeItem;
53
51
@@ -67,6 +65,10 @@ export default class G8TreeView extends Vue {
67
65
return this.item.children && this.item.children.length;
68
66
}
69
67
68
+ created() {
69
+ console.log(`created: ${this.item.name}`);
70
+ }
71
+
70
72
setState(state: boolean) {
71
73
this.item.checked = this.checked = state;
72
74
this.$children.forEach(c => (c as G8TreeView).setState(state));
@@ -75,6 +77,7 @@ export default class G8TreeView extends Vue {
75
77
76
78
clicked() {
77
79
if (this.hasChild) {
80
+ this.item.rendered = true;
78
81
this.expanded = !this.expanded;
79
82
}
80
83
this.$emit('click', this.item.key);
Original file line number Diff line number Diff line change @@ -17,6 +17,8 @@ export interface G8TreeItem {
17
17
*/
18
18
ints ?: boolean ;
19
19
20
+ rendered ?: boolean ;
21
+
20
22
tags ?: G8TreeItemTag [ ] ;
21
23
22
24
children ?: G8TreeItem [ ] ;
You can’t perform that action at this time.
0 commit comments