Files
antrean-operasi/app.vue
2026-02-27 13:26:52 +07:00

15 lines
293 B
Vue

<script setup lang="ts">
// Global error handler
const error = useError();
// Auth initialization is now handled by plugins/auth.client.ts
// No need to call checkAuth() here anymore
</script>
<template>
<NuxtLoadingIndicator />
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
</template>