ui_migration fix(deps): --preliminary-- Replace value to modelvalue, and global emitters. BUG:keys-arrows-wont-move
This commit is contained in:
parent
2a9ee759c4
commit
0296cef089
12 changed files with 165 additions and 62 deletions
|
|
@ -135,19 +135,19 @@ export default {
|
|||
|
||||
watch: {
|
||||
progress(newval) {
|
||||
eventBus.emit("update:progress", newval);
|
||||
eventBus.emit("beforeUpdate:progress", newval);
|
||||
},
|
||||
taskStarted(newval) {
|
||||
eventBus.emit("update:taskStarted", newval);
|
||||
eventBus.emit("beforeUpdate:taskStarted", newval);
|
||||
},
|
||||
taskRunning(newval) {
|
||||
eventBus.emit("update:taskRunning", newval);
|
||||
eventBus.emit("beforeUpdate:taskRunning", newval);
|
||||
},
|
||||
log(newval) {
|
||||
eventBus.emit("update:log", newval);
|
||||
eventBus.emit("beforeUpdate:log", newval);
|
||||
},
|
||||
taskStatus(newval) {
|
||||
eventBus.emit("update:taskStatus", newval);
|
||||
eventBus.emit("beforeUpdate:taskStatus", newval);
|
||||
},
|
||||
},
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue