有时候弹窗或者一些特殊的区域需要自定义一些html元素来显示(snabbdom)
const h = this.$createElement
this.$msgbox({
title: '提示',
message: h('p', null, [
h('p', null, 'YYYYYYYYYYYYY'),
h('p', null, '有问题请联系客服电话: XXXX-XXXXXXX')
]),
confirmButtonText: '确定',
type: 'warning',
showCancelButton: false,
showClose: false,
closeOnClickModal: false,
closeOnPressEscape: false
}).then(() => {
}).catch((e) => {
console.info(e)
})