fix: recommend anime always show the same result the first time

This commit is contained in:
Hakadao
2023-01-27 02:49:53 +08:00
parent a80dca96c0
commit 66cd669d8a

View File

@@ -6,7 +6,7 @@ import { getUserID } from '~/utils'
const recommendAnimeList = reactive<AnimeItem[]>([])
const animeWatchList = reactive<AnimeItem[]>([])
const cursor = ref<number>()
const cursor = ref<number>(29) // 遊標默認必須要非0否則第一次會出現同樣的結果
const isLoading = ref<boolean>()
const activatedSeasonId = ref<number>()