mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-18 08:12:15 +00:00
15 lines
328 B
Vue
15 lines
328 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>
|