this.$modal.msgSuccess如何使用
时间: 2024-06-13 21:03:36 浏览: 236
elementUI vue this.$confirm 和el.docx
5星 · 资源好评率100%
this.$modal.msgSuccess是一个前端框架Element UI中的方法,用于在页面上显示一个成功提示框。使用该方法需要先引入Element UI框架,然后在Vue组件中调用该方法即可。例如:
```
this.$modal.msgSuccess("新增成功");
```
其中,参数为提示框中显示的文本内容。
阅读全文