vue-website/app.vue

21 lines
358 B
Vue
Raw Normal View History

2024-09-21 21:24:43 +10:00
<script setup lang="ts">
import { SpeedInsights } from '@vercel/speed-insights/vue';
2025-06-04 17:35:01 +10:00
2024-09-21 21:24:43 +10:00
</script>
2024-07-18 14:43:01 +10:00
<template>
2024-09-21 21:24:43 +10:00
<SpeedInsights />
2024-07-18 14:43:01 +10:00
<div>
<!-- <NuxtRouteAnnouncer />
<NuxtWelcome /> -->
<NuxtLoadingIndicator />
<NuxtLayout>
<!-- <Navbar /> -->
2025-06-04 17:35:01 +10:00
<DomainWarning />
2024-07-18 14:43:01 +10:00
<NuxtPage />
</NuxtLayout>
</div>
</template>