mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-04 16:09:59 +00:00
a17d3276d3
Co-authored-by: Anthony Fu <anthonyfu117@hotmail.com>
15 lines
244 B
Vue
15 lines
244 B
Vue
<script setup lang="ts">
|
|
const token = useCookie('nuxtodon-token')
|
|
const router = useRouter()
|
|
|
|
// TODO: move to middleware
|
|
if (!token.value)
|
|
router.replace('/public')
|
|
else
|
|
router.replace('/home')
|
|
</script>
|
|
|
|
<template>
|
|
<div />
|
|
</template>
|