ElNotification({ message: successMessage, dangerouslyUseHTMLString: true, type: 'success', }) 和.el-notification__success { background-color: #67C23A; color: #fff; } .el-notification__error { background-color: #F56C6C; color: #fff; }在一个组件中怎么放在了 ElNotification 的调用之前
时间: 2024-03-10 09:44:53 浏览: 130
exception_notification-shoryuken:Shoryuken http的Rails异常通知程序插件
如果你的样式定义已经放在了 `ElNotification` 的调用之前,但是样式仍然没有生效,那么可能是因为你的样式被其他样式覆盖了。
你可以尝试添加 `!important` 关键字来强制应用你的样式,例如:
```
.el-notification__success {
background-color: #67C23A !important;
color: #fff !important;
}
.el-notification__error {
background-color: #F56C6C !important;
color: #fff !important;
}
```
请注意,使用 `!important` 可能会导致样式的可维护性变差,因此应该尽量避免过度使用。如果你仍然无法解决问题,可以考虑提供更多的代码和上下文信息,以便更好地理解问题。
阅读全文