fix: directly set arrays, objects and delete directly

Not needed since vue3 uses proxies
This commit is contained in:
Dominik Pschenitschni 2021-08-19 21:35:38 +02:00
parent 2b20f328cb
commit db49b9b532
No known key found for this signature in database
GPG key ID: B257AC0149F43A77
33 changed files with 104 additions and 113 deletions

View file

@ -56,14 +56,14 @@ export default {
this.listSerivce.getAll({}, {s: query})
.then(response => {
this.$set(this, 'foundLists', response)
this.foundLists = response
})
.catch(e => {
this.$message.error(e)
})
},
clearAll() {
this.$set(this, 'foundLists', [])
this.foundLists = []
},
select(list) {
this.list = list