最近开发中遇到的一个问题:
我的消息提示,被弹框遮住了:
在这里插入图片描述
问题原因是:element UI默认给$message消息弹框动态添加的z-index值比对话框小
解决办法:
网上说,给消息弹框配置自定义class,于是我就配置了:

this.$message({type:'warning',message:"必须选则一个模板且仅能选择一个!",customClass:"messageClass"});
<style >
/* 必须是全局style,不能有scoped */
.messageClass{
  z-index: 3000 !important;
}
</style>

但是使用的时候却报错:TypeError: _this3.$message is not a function
于是我又换了一种写法,完美解决!
在需要的页面引入

import { Message } from "element-ui";

使用:

Message.warning("必须选则一个模板且仅能选择一个!");
// 或者
Message({
    type: "warning",
    message: "必须选则一个模板且仅能选择一个!"
});

不用自定义class,就可以了!
在这里插入图片描述

GitHub 加速计划 / eleme / element
10
1
下载
A Vue.js 2.0 UI Toolkit for Web
最近提交(Master分支:4 个月前 )
c345bb45 8 个月前
a07f3a59 * Update transition.md * Update table.md * Update transition.md * Update table.md * Update transition.md * Update table.md * Update table.md * Update transition.md * Update popover.md 8 个月前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐