在Element中存在滚动条组件
729048fef1fd59cb776878aa7f0aa91.png
就是这个东西
<template>
<div style="height:600px;">
<el-scrollbar style="height:100%" wrap-style="overflow-x:hidden;">
<div style="width:700px;height:700px;border:solid;" >
....... blabla.....
</div>
</el-scrollbar>
</div></template>
注意1.当使用el-scrollbar的时间x轴会出现一个很丑的原生滚动,此时需要通过wrap-style="overflow-x:hidden;"去除
2.el-scrollbar需要放置在固定父盒子和需要滚动的子盒子之间
网友评论