1. 程式人生 > >element this.$confirm確定框內容換行顯示

element this.$confirm確定框內容換行顯示

element 確定框

  // 把寫的提示信心需要換行的地方分成陣列 confirmText
const confirmText = ['是否將基金產品從我的自選中移出?',  '注意:此操作將從我的自選中的所有分組中移除該產品。'] 
        const newDatas = []
        const h = this.$createElement
        for (const i in confirmText) {
          newDatas.push(h('p', null, confirmText[i]))
        }
        this.$confirm(
          '提示',
          {
            title: '提示',
            message: h('div', null, newDatas),
            showCancelButton: true,
            confirmButtonText: '確定',
            cancelButtonText: '取消',
            type: 'warning'
          }
        ).then(() => {
          
        })

換行效果圖
在這裡插入圖片描述