We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fa3831 commit babc461Copy full SHA for babc461
src/components/table/CDataTable.vue
@@ -278,8 +278,8 @@ export default {
278
sorterValue: {
279
immediate: true,
280
handler (val) {
281
- this.sorterState.column = val.column
282
- this.sorterState.asc = val.asc === false ? false : true
+ const asc = val.asc === false ? false : true
+ this.sorterState = Object.assign({}, { asc, column: val.column })
283
}
284
},
285
tableFilterValue (val) {
0 commit comments