mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-06 03:57:56 +08:00
12 lines
327 B
Vue
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>
|