不生效的源代码
html
<style lang="scss" scoped>
::v-deep .el-notification__group {
margin-left: 130px;
}
</style>
html
<style lang="scss" scoped>
.el-notification__group {
margin-left: 130px;
}
</style>
以上两种代码均不生效
解决方案把设置 Notification 得样式设置在scoped外面
html
<style>
.el-notification__group {
width: 100%;
}
</style>