// h(‘div’)就表示创建一个div标签, 如果写成h(‘div’,{class:‘…’})就可以定义class,如:
h('i', { class: 'el-icon-question' })
// 将要显示的文件放在一个数组中
let confirmText = [
"你喜欢做一个存粹的技术人吗?",
'还挺喜欢的'
]
const newDatas = []
const h = this.$createElement //先用$createElement创建h函数。
for (const i in confirmText) {
newDatas.push(h("p", confirmText[i]))
}
this.$confirm("提示", {
title: "提示",
message: h("div", null, newDatas),
showCancelButton: true,
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning"
})
.then(async () => {
})
.catch(error => {
console.log(error)
})