this.$confirm提示语换行
时间: 2024-04-18 09:22:13 浏览: 186
重写alert,confirm 提示框样式
在Vue中,使用this.$createElement方法可以创建一个包含多个子元素的节点,从而实现换行的效果。具体实现方法可以参考以下代码:
```
const h = this.$createElement;
this.$confirm('提示', {
title: '提示',
message: h('div', [
h('p', '新建会导致之前设置失效'),
h('p', '是否继续新建?')
]),
confirmButtonText: '确定',
cancelButtonText: '取消'
}).then(() => {
// 调用新建方法
}).catch(() => {}).finally(() => {});
```
其中,h('p', '新建会导致之前设置失效')和h('p', '是否继续新建?')分别表示创建一个p标签,并在其中添加文本内容。通过将这两个p标签作为子元素添加到一个div标签中,就可以实现换行的效果。
阅读全文