Files
vuefilemanager/resources/js/components/Sidebar/ContentSidebar.vue
2022-02-01 12:21:38 +01:00

12 lines
307 B
Vue

<template>
<section class="content-sidebar z-10 hidden w-52 flex-none select-none overflow-y-auto bg-light-background pt-6 dark:bg-dark-background lg:block xl:w-56" id="content-sidebar">
<slot></slot>
</section>
</template>
<script>
export default {
name: 'ContentSidebar',
}
</script>