el-scrollbar外的div一定要设置好高度,el-scrollbar样式设置为style="height: 100%"

HTML 代码

<div >
    <el-scrollbar style="height: 100%" wrap-style="overflow-x:hidden;">
        <el-timeline :reverse="reverse" style="margin-top: 10px">
            <el-timeline-item
                v-for="(activity, index) in activities"
                :key="index"
                :color="activity.color"
                :timestamp="activity.timestamp"
            >
                {{ activity.content }}
            </el-timeline-item>
        </el-timeline>
    </el-scrollbar>
</div>

CSS代码

#main {
    height: calc(100vh - 320px);
    border-style: dashed;
}

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-08-12
  • 2021-10-16
  • 2021-10-17
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-06-21
  • 2022-12-23
  • 2022-12-23
  • 2021-10-17
  • 2021-06-28
相关资源
相似解决方案