iview this.$Modal.confirm(config) 弹出框怎么添加类名
时间: 2023-12-20 22:42:29 浏览: 182
基于 Vue.js 之 iView UI 框架非工程化实践记录(推荐)
你可以通过 `config` 对象的 `class` 属性来添加类名。具体地说,在 `config` 对象中设置 `class` 属性为你想要添加的类名即可。例如:
```javascript
this.$Modal.confirm({
class: 'my-custom-class',
// 其他配置项
});
```
这样就会给弹出框元素添加一个名为 `my-custom-class` 的类名。你可以根据自己的需要替换 `'my-custom-class'` 为你想要的类名。
阅读全文