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
|
|
@ -60,11 +60,17 @@ export default {
|
|||
},
|
||||
|
||||
watch: {
|
||||
log: function () {
|
||||
this.scrollToBottom();
|
||||
log: {
|
||||
handler() {
|
||||
this.scrollToBottom();
|
||||
},
|
||||
deep: true,
|
||||
},
|
||||
taskStatus: function () {
|
||||
this.scrollToBottom();
|
||||
taskStatus: {
|
||||
handler() {
|
||||
this.scrollToBottom();
|
||||
},
|
||||
//deep: true,
|
||||
},
|
||||
},
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue