alai-server/frontend/src/views/HomeView.vue

19 lines
236 B
Vue

<script setup>
import auth from '../utils/Auth';
import { onMounted } from 'vue';
onMounted(() => {
checkAuth();
})
const checkAuth = () => {
auth.checkToken(true);
};
</script>
<template>
<main>
</main>
</template>