吳元皓 a5a3519111 Update docker compose & move the desktop to the root, as it is better if
I ever wanted to make the UI more basic and blander (for normal ppl)
2025-05-18 23:16:22 +08:00

12 lines
333 B
Vue

<script setup lang="ts">
import BlurPageBeforeLogin from "~/components/blurPageBeforeLogin.vue";
const { t } = useI18n();
const { data: favData, error, pending } = useFetch("/api/user/fav", {});
</script>
<template>
<BlurPageBeforeLogin>
<div>{{ favData }}</div>
<!--Testing only!!!-->
</BlurPageBeforeLogin>
</template>