Ant Design Vue 3.2.20, Modal.method() 组件的content属性如何实现换行
时间: 2024-02-12 17:03:41 浏览: 128
如果你想在使用Modal.method()方法创建对话框时,在content属性中实现换行,可以通过在content属性中使用`\n`或者`<br>`标签来实现。
例如,下面是一个在Modal.method()方法中使用`\n`实现换行的例子:
```javascript
this.$modal.confirm({
title: '提示',
content: '你确定要删除这个项目吗?\n删除后将无法恢复!',
onOk: () => {
// 确认删除
},
onCancel: () => {
// 取消删除
},
});
```
在上面的例子中,我们在content属性中使用了`\n`实现了换行。
如果你想在content属性中使用HTML标签实现换行,可以使用`<br>`标签。例如:
```javascript
this.$modal.confirm({
title: '提示',
content: '你确定要删除这个项目吗?<br>删除后将无法恢复!',
onOk: () => {
// 确认删除
},
onCancel: () => {
// 取消删除
},
});
```
在上面的例子中,我们在content属性中使用了`<br>`标签实现了换行。注意,如果你使用了HTML标签,需要将html属性设置为true,例如:
```javascript
this.$modal.confirm({
title: '提示',
content: '你确定要删除这个项目吗?<br>删除后将无法恢复!',
html: true,
onOk: () => {
// 确认删除
},
onCancel: () => {
// 取消删除
},
});
```
在上面的例子中,我们将html属性设置为true,表示content属性中可以使用HTML标签。
阅读全文