Files
service-finder/old_maps/frontend_old/Archive/admin/pages/index.vue
2026-06-04 07:26:22 +00:00

15 lines
290 B
Vue

<template>
<div>
<!-- Redirect to dashboard using Nuxt's navigateTo -->
<p>Redirecting to dashboard...</p>
</div>
</template>
<script setup lang="ts">
import { navigateTo } from '#app'
// Redirect to dashboard on mount
onMounted(() => {
navigateTo('/dashboard')
})
</script>