有時候彈窗或者一些特殊的區域需要自定義一些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)
})
