this.confirm弹窗去除取消, 右上角x按钮
1.弹窗是显示
使用的是this.confirm弹窗, 去掉右上角的x和取消按钮, 也不能点击空白处关闭
2.修改代码
this.$confirm(this.$t('login.udpatePwdSuccess'), this.$t('common.tip'), {
confirmButtonText: this.$t('button.confirm'),
showCancelButton: false, //是否显示取消按钮
closeOnClickModal: false, //是否点击遮罩(点击空白处)关闭
showClose: false, //是否显示右上角的x
type: 'warning'
}).then(() => {
3.效果如下
4.element-ui 文档出处 https://element.eleme.io/#/zh-CN/component/message-box