mirror of
https://github.com/Drop-OSS/drop-app.git
synced 2025-11-20 03:31:23 +10:00
13 lines
301 B
Vue
13 lines
301 B
Vue
<template>
|
|
<div tvnav-id="mainbody" class="flex flex-row bg-zinc-900 overflow-hidden h-screen">
|
|
<Sidebar class="select-none" />
|
|
<div class="relative grow overflow-y-auto">
|
|
<slot />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
const queueState = useQueueState();
|
|
</script>
|