const h = this.$createElement
let message = h('div', null, [
h(
'p',
{ style: 'text-indent:2em' },
'可能需要等待长处理时间。。'
),
h('p', { style: 'text-indent:2em' }, '是否确定选择?')
])
//elementUi
this.$confirm(message, '提示', {
confirmButtonText: '放弃修改',
cancelButtonText: '确定',
showClose: false,
closeOnClickModal: false,
type: 'warning'
})
使用Vue.js中的渲染函数(render function)来创建标签<div>元素。
于 2023-07-31 10:39:04 首次发布