Open
Description
For example:
methods: {
async refresh() {
let openedId = this.opened.id
await this.$asyncComputed.items.updatePromise()
this.opened = this.items.find(x => x.id === openedId)
},
// or
async refresh() {
let openedId = this.opened.id
let items = await this.$asyncComputed.items.updatePromise()
this.opened = items.find(x => x.id === openedId)
},
}
Sorry for my English.
Metadata
Metadata
Assignees
Labels
No labels