nuvira/pages/settings.vue
2025-02-27 02:56:21 +01:00

16 lines
No EOL
212 B
Vue

<script setup lang="ts">
import {checkAuth} from "~/util/auth";
onMounted(async () => {
let isAuthed = await checkAuth(useRouter())
})
</script>
<template>
<h1>hola</h1>
</template>
<style scoped>
</style>