Skip to content

Commit 5669a5f

Browse files
authored
Update mixin-busy.js
1 parent b837461 commit 5669a5f

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/components/table/helpers/mixin-busy.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,13 @@ export default {
1515
return this.busy || this.localBusy
1616
}
1717
},
18+
watch: {
19+
localBusy(newVal, oldVal) {
20+
if (newVal !== oldVal) {
21+
this.$emit('update:busy', newVal)
22+
}
23+
}
24+
},
1825
methods: {
1926
// Event handler helper
2027
stopIfBusy(evt) {

0 commit comments

Comments
 (0)