修改确认提示框的默认按钮样式,使用message属性修改:
例:
js代码:
this.$msgbox({
title: '确定要删除吗?',
message: this.$createElement('p', null, [
this.$createElement('span', { style: 'color: red' }, '该素材一旦删除,用户端引用的地方将无法正常显示,请谨慎操作。')
]),
showCancelButton: true,
confirmButtonText: '确定',
cancelButtonText: '取消'
}).then(() => {});