Vue ElementUI 修改消息提示框样式—messageBox 的大小

导读:本篇文章讲解 Vue ElementUI 修改消息提示框样式—messageBox 的大小,希望对大家有帮助,欢迎收藏,转发!站点地址:www.bmabk.com

在窄屏模式下(移动端),提示框的宽度太宽,会出现显示不完全的问题。
应当如何修改 ElementUI 的样式呢?

在这里插入图片描述

  open() {
      this.$confirm(
        window.vm.$i18n.t("tips.conLogOut"),
        window.vm.$i18n.t("tips.tip"),
        {
          confirmButtonText: window.vm.$i18n.t("backTips.confirm"),
          cancelButtonText: window.vm.$i18n.t("backTips.cancel"),
          type: "warning",
        }
      ).then(() => {
        this.logout();
      });
    },
 
 <style scoped>
.el-message-box {
  width: 235px;
}
</style>

![在这里插入图片描述](https://img-blog.csdnimg.cn/722760c42706472595ef8eb26ba7fbaf.png

此时在scoped的style中写是无效的,因为ElementUI组件不可以给样式添加scoped,因此必须去掉scoped;但是去掉scoped后不满足单组件的CSS。

解决方案

1、附加在没有scoped的style中

<style scoped>
  ...
</style>
<style>
  ...
  .el-message-box {
    width: 235px;
  }
</style>


在这里插入图片描述
2、给消息提示框加类名(荐)
更加推荐为这个messageBox添加一个类名,比较科学并且不会影响到其他。
在这里插入图片描述

this.$confirm('确认注销吗?', '提示', {
  customClass: 'message-logout'
}).then(() => {
  this.$message({
    message: '已成功注销',
    type: 'success'
  })
}).catch(() => {  })
...
<style scoped>
  ...
</style>
<style>
  ...
  .message-logout {
    width: 350px;
  }
</style>

或者直接important

@media (max-width: 730px) {
  .message-logout{
    width: 350px !important;
  }
 }

在这里插入图片描述

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/79210.html

(1)
小半的头像小半

相关推荐

极客之音——专业性很强的中文编程技术网站,欢迎收藏到浏览器,订阅我们!