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) { ... }