Vue 使用$createElement自定义文本

有时候弹窗或者一些特殊的区域需要自定义一些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)
    })
posted @ 2020-07-21 23:57  荣光无限  阅读(1941)  评论(0编辑  收藏  举报