Advertisement
meshwara

membuat-promise-based-dialog#09

Aug 25th, 2019
441
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <template>
  2.   . . .
  3.   <v-btn @click="openDialog" color="primary">Open Dialog</v-btn>
  4.   . . .
  5. </template>
  6.   . . .
  7.   methods: {
  8.     openDialog() {
  9.       this.$refs.dlg
  10.         .open()
  11.         .then(res => {
  12.           this.hasil = res;
  13.         })
  14.         .catch(res => {
  15.           this.hasil = res;
  16.         });
  17.     }
  18.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement