Files
vuefilemanager/resources/js/components/Sidebar/ContentSidebar.vue
2021-11-24 17:59:05 +01:00

12 lines
314 B
Vue

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