mirror of
https://github.com/hpware/news-analyze.git
synced 2025-06-23 15:51:01 +08:00
15 lines
374 B
Vue
15 lines
374 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>
|
|
<div v-for="items in favData.items">
|
|
{{ items }}
|
|
</div>
|
|
</div>
|
|
</BlurPageBeforeLogin>
|
|
</template>
|