美文网首页vue系列uni
vue element 下拉option不消失

vue element 下拉option不消失

作者: litielongxx | 来源:发表于2023-01-09 16:39 被阅读0次

    原因是dropdown组件下拉框中,menu被display:hone 隐藏报错。
    https://blog.csdn.net/weixin_43968963/article/details/124444612
    有同类解释很清楚了,如右侧还显示右侧箭头话,可以另外方式。

    image.png
    绑定:class添加动态样式
    .none {
    width:0;
    height:0;
    overflow:hidden;
    }
    取消竖线
    .el-dropdown-menu {
      border: none;
    }
    

    相关文章

      网友评论

        本文标题:vue element 下拉option不消失

        本文链接:https://www.haomeiwen.com/subject/xvxmcdtx.html