ui_migration fix(deps): --preliminary-- Removing deep:true from watchers that are not defined as arrays. Missing type hints in watchers.
This commit is contained in:
parent
0e6a0c17f4
commit
dfca0ff7e0
5 changed files with 17 additions and 9 deletions
|
|
@ -155,14 +155,14 @@ export default {
|
|||
handler(newval) {
|
||||
this.$emit("update:progress", newval);
|
||||
},
|
||||
deep: true,
|
||||
//deep: true,
|
||||
immediate: true // Optional: triggers immediately on component load
|
||||
},
|
||||
taskStarted: {
|
||||
handler(newval) {
|
||||
this.$emit("update:taskStarted", newval);
|
||||
},
|
||||
deep: true
|
||||
//deep: true
|
||||
},
|
||||
taskRunning: {
|
||||
handler(newval) {
|
||||
|
|
@ -180,7 +180,7 @@ export default {
|
|||
handler(newval) {
|
||||
this.$emit("update:taskStatus", newval);
|
||||
},
|
||||
deep: true
|
||||
//deep: true
|
||||
}
|
||||
},
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue