mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-09 20:12:10 +10:00
19 lines
326 B
Vue
19 lines
326 B
Vue
<template>
|
|
<content class="flex flex-col w-full min-h-screen">
|
|
<UserHeader />
|
|
<div class="grow flex">
|
|
<NuxtPage />
|
|
</div>
|
|
<UserFooter />
|
|
</content>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
useHead({
|
|
titleTemplate(title) {
|
|
if (title) return `${title} | Drop`;
|
|
return `Drop`;
|
|
},
|
|
});
|
|
</script>
|