ElementUI的MessageBox的按钮置灰且不可点击
【代码】ElementUI的MessageBox的按钮置灰且不可点击。
·
// 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;
}
更多推荐
已为社区贡献1条内容
所有评论(0)