Skip to content

Commit

Permalink
fix: resolve issue #17 that rowOrder and ColOrder are not working
Browse files Browse the repository at this point in the history
  • Loading branch information
Seungwoo321 committed Oct 22, 2022
1 parent 1973c98 commit 97a4f4f
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/PivottableUi.js
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,16 @@ export default {
this.materializeInput(nextProps.data)
},
watch: {
rowOrder: {
handler (value) {
this.propsData.rowOrder = value
}
},
colOrder: {
handler (value) {
this.propsData.colOrder = value
}
},
cols: {
handler (value) {
this.propsData.cols = value
Expand Down

0 comments on commit 97a4f4f

Please sign in to comment.