elementui this.$modal.confirm 添加html语句
时间: 2024-05-15 21:14:30 浏览: 101
element中的$confirm的使用
5星 · 资源好评率100%
你可以在 `this.$modal.confirm` 的 `content` 属性中添加HTML语句:
```
this.$modal.confirm({
title: '确认提示',
content: '<p>这是一个带有HTML语句的确认提示框。</p><p>请确认是否继续?</p>',
onOk: () => {
// 确认操作
},
onCancel: () => {
// 取消操作
}
});
```
请注意,添加HTML语句可能会增加安全风险,请确保你信任并且不会从用户获取恶意代码。
阅读全文