Files
kr-phim/app/app.vue
T

15 lines
342 B
Vue
Raw 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 />
</NuxtLayout>
<AppFooter v-if="!isAdmin" />
<ScrollToTop v-if="!isAdmin" />
2026-05-17 18:42:09 +07:00
</template>