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 9b2f92a commit 4d6b130Copy full SHA for 4d6b130
src/components/billingRecord/IFXBillingRecordHeaderDecimal.vue
@@ -43,9 +43,7 @@ export default {
43
required: true,
44
},
45
46
- mounted() {
47
- this.localRowSelectionToggle = this.rowSelectionToggle.concat()
48
- },
+ mounted() {},
49
data() {
50
return {
51
localRowSelectionToggle: [],
@@ -69,7 +67,14 @@ export default {
69
67
this.showSummaryDetail = !this.showSummaryDetail
70
68
71
72
- watch: {},
+ watch: {
+ rowSelectionToggle: {
+ handler(value) {
73
+ this.localRowSelectionToggle = value.concat()
74
+ },
75
+ immediate: true,
76
77
78
}
79
</script>
80
<template>
0 commit comments