2024-03-19 17:26:08 +08:00

12 lines
327 B
Vue

<template>
<div class="tdesign-scrollbar" style="overflow: hidden; position: relative; height: 100%">
<div class="tdesign-scrollbar-wrap" style="overflow: auto; height: 100%">
<div class="tdesign-scrollbar-view">
<slot></slot>
</div>
</div>
</div>
</template>
<script setup lang="ts"></script>