24 lines
567 B
Vue
Raw Normal View History

2024-03-31 15:51:00 +08:00
<template>
2024-04-03 13:51:54 +08:00
<a-layout-content class="content">
<a-scrollbar style="height: 100%; overflow: auto" outer-class="scrollbar">
<div style="height: 2000px; background: #eee"></div>
</a-scrollbar>
</a-layout-content>
2024-03-31 15:51:00 +08:00
</template>
<script setup lang="ts"></script>
<style lang="scss" scoped>
.content {
2024-04-03 13:51:54 +08:00
height: calc(100vh - 60px - 30px); // 动态切类名-去掉footer
}
.scrollbar {
height: 100%;
2024-04-03 13:51:54 +08:00
}
// 修改左侧滚动条宽度
:deep(.arco-scrollbar-thumb-direction-vertical .arco-scrollbar-thumb-bar) {
width: 4px;
margin-left: 8px;
}
</style>