美文网首页
element-ui的滚动条组件el-scrollbar(官方没

element-ui的滚动条组件el-scrollbar(官方没

作者: PharkiLL | 来源:发表于2021-05-12 17:36 被阅读0次

<template><div style="height:600px;">

<el-scrollbar style="height:100%"><div style="width:700px;height:700px;border:solid;">          ....... blabla.....

    </div></el-scrollbar></div></template>

在使用时要设置外层容器高度。并且要设置el-scrollbar 的高度为100%

.el-scrollbar__wrap{

overflow-x: hidden;

}