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

19 lines
236 B
Vue
Raw Normal View History

<script setup>
2023-01-31 23:09:14 -03:00
import auth from '../utils/Auth';
import { onMounted } from 'vue';
onMounted(() => {
checkAuth();
})
const checkAuth = () => {
auth.checkToken(true);
};
</script>
<template>
<main>
2023-01-31 23:09:14 -03:00
</main>
</template>