Skip to content

Commit

Permalink
Merge pull request #6391 from kimhanui/master
Browse files Browse the repository at this point in the history
Fix #6390: Updated `Tree` example code of document
  • Loading branch information
tugcekucukoglu authored Sep 24, 2024
2 parents 7cb8650 + 9ee0790 commit 97a294b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion apps/showcase/doc/tree/selection/CheckboxDoc.vue
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ import { NodeService } from '@/service/NodeService';
export default {
data() {
return {
nodes: null
nodes: null,
selectedKey: null,
};
},
mounted() {
Expand Down
3 changes: 2 additions & 1 deletion apps/showcase/doc/tree/selection/SingleDoc.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ import { NodeService } from '@/service/NodeService';
export default {
data() {
return {
nodes: null
nodes: null,
selectedKey: null,
};
},
mounted() {
Expand Down

0 comments on commit 97a294b

Please sign in to comment.