mirror of
https://github.com/Drop-OSS/drop-app.git
synced 2025-11-11 21:12:12 +10:00
13 lines
262 B
Vue
13 lines
262 B
Vue
<template>
|
|
<div class="flex flex-col bg-zinc-900 overflow-hidden">
|
|
<Header class="select-none" />
|
|
<div class="grow overflow-y-auto">
|
|
<slot />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
const queueState = useQueueState();
|
|
</script>
|