muzika-gromche/Frontend/src/components/library/panel/ScrollablePanel.vue

18 lines
348 B
Vue

<script setup lang="ts">
import Panel from './Panel.vue'
import ShadowedScrollView from './ShadowedScrollView.vue'
</script>
<template>
<Panel>
<template #toolbar>
<slot name="toolbar" />
</template>
<ShadowedScrollView class="tw:h-full">
<slot />
</ShadowedScrollView>
</Panel>
</template>
<style scoped></style>