[Vuejs]-Return values from dialog

0👍

Did you already declare the resolve variable in your data ? Like

data () {
   return {
     resolve:null
   }
}

And change your promise to arrow function,

return new Promise((resolve, reject) => {
    this.resolve = resolve
})

Leave a comment