This commit is contained in:
jxxghp
2023-10-12 22:45:59 +08:00
parent e34f18799f
commit c94d5f7e7d
3 changed files with 8 additions and 8 deletions
+4 -4
View File
@@ -217,10 +217,10 @@ watchEffect(() => {
</VCard>
<div class="grid gap-3 grid-torrent-card items-start">
<TorrentCard
v-for="(data, index) in dataList"
:key="index"
:torrent="data"
:more="data.more"
v-for="(item, index) in dataList"
:key="`${index}_${item.torrent_info.title}_${item.torrent_info.site}`"
:torrent="item"
:more="item.more"
/>
</div>
</template>