// 把写的提示信心需要换行的地方分成数组 confirmText
const confirmText = ['是否将产品001从我的自选中移出?', '是否将产品002从我的自选中移出?']
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(() => {
})
element this.$confirm确定框内容换行显示
最新推荐文章于 2024-10-15 17:59:52 发布