学无先后,达者为师

网站首页 Vue 正文

elementUI 让Notification组件弹出到最上层

作者:白菜new 更新时间: 2022-01-06 Vue

问题描述:

在使用dialog对话框等有modal遮罩层的组件时,再使用Notification通知组件便会遇到,遮罩层把通知掩盖住了
在这里插入图片描述


解决方案:

在element文档中有custom-class这样的属性,我们可以给Notification组件自定义一个类,并在全局改写其z-index


ElNotification({
  title: 'Success',
  customClass: 'http-message',
  message: 'This is a success message',
  type: 'success',
})

// App.vue
<style lang="less">
.http-message {
	z-index: 9000 !important;
}
</style>

效果就实现了
在这里插入图片描述

原文链接:https://blog.csdn.net/qq_43850819/article/details/122038323

栏目分类
最近更新