Files

15 lines
365 B
Vue
Raw Permalink Normal View History

<script setup lang="ts">
const route = useRoute()
const isAdmin = computed(() => route.path.startsWith('/admin'))
</script>
2026-05-17 18:42:09 +07:00
<template>
<NuxtRouteAnnouncer />
2026-05-24 22:35:13 +07:00
<NuxtLoadingIndicator color="#facc15" :height="2" />
<NuxtLayout>
<NuxtPage :key="$route.fullPath" />
</NuxtLayout>
<AppFooter v-if="!isAdmin" />
<ScrollToTop v-if="!isAdmin" />
2026-05-17 18:42:09 +07:00
</template>