
# Conflicts: # backend/.env.example # backend/package.json # backend/src/app.ts # backend/src/routes/login.ts # backend/src/routes/student.ts # docker-compose.yml # frontend/src/App.vue # frontend/src/views/HomePage.vue # frontend/src/views/LoginPage.vue # package-lock.json
10 lines
180 B
Vue
10 lines
180 B
Vue
<script setup lang="ts">
|
|
import auth from "@/services/auth/auth-service.ts";
|
|
auth.loadUser();
|
|
</script>
|
|
|
|
<template>
|
|
<router-view />
|
|
</template>
|
|
|
|
<style scoped></style>
|