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