Advertisement
windy_cloud9

on confirm example

Jun 25th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. clickDelete() {
  2.       this.$dialog.confirm({
  3.         title: `Delete ${this.localDiscount.code}?`,
  4.         message: `Are you sure you want to delete the discount`,
  5.         confirmText: 'Delete discount',
  6.         onConfirm: this.deleteDiscount,
  7.         type: 'danger',
  8.       })
  9.     },
  10.     async deleteDiscount() {
  11.       // Delete discount
  12.     },
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement