10 lines
186 B
Vue
10 lines
186 B
Vue
<script setup lang="ts">
|
|
import auth from "@/services/auth/auth-service.ts";
|
|
await auth.loadUser();
|
|
</script>
|
|
|
|
<template>
|
|
<router-view />
|
|
</template>
|
|
|
|
<style scoped></style>
|