<template>
<div class="l-tips">
<el-button @click="handleClick">按钮</el-button>
</div>
</template>
<script lang="ts">
import { Options, Vue } from 'vue-class-component';
import { ElMessageBox } from 'element-plus';
@Options({
components: {
},
})
export default class PageTips extends Vue {
async handleClick() {
const result = await ElMessageBox.confirm('请确认提交吗?',{
title:'提示',
type:'warning',
}).then(()=>{
return true;
}).catch(()=>{
return false;
});
console.log(result);
}
}
</script>
<style lang="scss" scoped>
</style>
点击确定后返回true
文章来源地址https://www.toymoban.com/news/detail-617746.html
文章来源:https://www.toymoban.com/news/detail-617746.html
到了这里,关于vue 关于 element ui confirm返回 Promise true false 异步处理的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!