美文网首页
el-scrollbar

el-scrollbar

作者: lesdom | 来源:发表于2022-10-17 18:44 被阅读0次

    el-scrollbar

    使用

    Scrollbar.none-x-axis(style='height: 100%')
    
    .none-x-axis
      .el-scrollbar__wrap
          overflow-x: hidden;
    

    注意事项

    隐藏横向滚动条要单独使用,不能加在全局上,因为element的select选择框也使用了Scrollbar

    源代码

    props: {
        native: Boolean,
        wrapStyle: {},
        wrapClass: {},
        viewClass: {},
        viewStyle: {},
        noresize: Boolean, // 如果 container 尺寸不会发生变化,最好设置它可以优化性能
        tag: {
          type: String,
          default: 'div'
        }
    },
    

    相关文章

      网友评论

          本文标题:el-scrollbar

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