关于 element-ui 的隐藏组件el-scrollbar

在官方文档中没有给出这个组件,但是在源码中是有的。所以我们可以直接使用:

<el-scrollbar></el-scrollbar>

举个例子:(高度随内容自适应)

<html>
    <body>
        <div style='height:100%'>
            <el-scrollbar class='page-component__scroll'></el-scrollbar>
        <div>
    </body>
</html>

<style>
html,body{
    height:100%
    overflow:hidden; /*有效防止在页面进行手动刷新时显示内置滚动条*/
}
.page-component__scroll{
    height: 100%;
}
.page-component__scroll .el-scrollbar__wrap {
    overflow-x: auto;
}
<style>

 

posted @ 2020-09-07 17:25  棠樾  阅读(834)  评论(0编辑  收藏  举报