2025SELab2-project-Dwengo/frontend/src/App.vue
Gerald Schmittinger 26d5c09bb4 chore(frontend): Refactoring
Refactoring zodat de structuur van de authenticatieservice in de client duidelijker is.
2025-03-02 21:02:17 +01:00

12 lines
181 B
Vue

<script setup lang="ts">
import auth from "@/services/auth/auth-service.ts";
auth.loadUser();
</script>
<template>
<router-view/>
</template>
<style scoped>
</style>