Files
bab-app/src/App.vue
Patrick Toal fc035106d0
All checks were successful
Build BAB Application Deployment Artifact / build (push) Successful in 2m29s
fix: trying to load resources before auth
2024-06-13 23:46:43 -04:00

17 lines
285 B
Vue

<template>
<router-view />
</template>
<script setup lang="ts">
import { defineComponent, onMounted } from 'vue';
import { useAuthStore } from './stores/auth';
defineComponent({
name: 'OYS Borrow-a-Boat',
});
onMounted(async () => {
await useAuthStore().init();
});
</script>