在这里插入图片描述

	// this.$confirm
 	this.$alert('这是一段内容', '标题名称', {
          confirmButtonText: '确定',
          confirmButtonCLass: 'confirmButton',
          beforeClose: (action,instance,done) => {
            if (action == 'confirm) {
            	return false
          	} else {
          		done()
          	}
        });
      }
.confirmButton {
	background: #ccc !important;
	cursor: not-allowed;
}

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注