mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-10-12 04:43:42 +08:00
19 lines
325 B
Vue
19 lines
325 B
Vue
<script setup lang="ts">
|
|
import Simplebar from 'simplebar-vue';
|
|
import 'simplebar-vue/dist/simplebar.min.css';
|
|
|
|
defineOptions({
|
|
name: 'SimpleScrollbar'
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<div class="h-full flex-1-hidden">
|
|
<Simplebar class="h-full">
|
|
<slot />
|
|
</Simplebar>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped></style>
|