Skip to content

Commit

Permalink
[#935][3.0] TreeGrid > deselect 를 위한 watch 추가 (#936)
Browse files Browse the repository at this point in the history
  • Loading branch information
baejihoon authored Nov 12, 2021
1 parent 7bd4874 commit 8c0d9f5
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/components/treeGrid/TreeGrid.vue
Original file line number Diff line number Diff line change
Expand Up @@ -326,6 +326,12 @@ export default {
}
},
);
watch(
() => props.selected,
(value) => {
selectInfo.selectedRow = value;
},
);
watch(
() => checkInfo.useCheckbox.mode,
() => {
Expand Down

0 comments on commit 8c0d9f5

Please sign in to comment.