feat: 添加深冻结库,重构无限加载页面,优化缓存逻辑并新增详情页
All checks were successful
/ depcheck (push) Successful in 1m16s
/ build-and-deploy-to-vercel (push) Successful in 1m47s
/ playwright (push) Successful in 1m55s

This commit is contained in:
严浩
2025-01-02 16:18:37 +08:00
parent 49da2ee1d8
commit d30163351a
7 changed files with 186 additions and 125 deletions

View File

@ -0,0 +1,8 @@
<script setup lang="ts">
const route = useRoute();
</script>
<template>
<h1>Detail</h1>
<p>id: {{ route.query.id }}</p>
</template>