Vuetify Confirm Dialog Demo

Show warning confirmation dialog Show simple confirmation

          this.$confirm('Do you really want to exit?').then(res => {
          })
          let res = await this.$confirm('Do you really want to exit?', {title: 'Warning'})
          if (res) {
            ...
          }
        


Documentation: https://github.com/yariksav/vuetify-confirm