[Feature]
All checks were successful
Node.js CI / build-and-test (push) Successful in 24s

为 SSR 的导航菜单添加链接
This commit is contained in:
2025-05-16 09:31:13 +08:00
parent 063a1330d7
commit 2aea1eae7f

View File

@ -98,7 +98,7 @@ onMounted(async () => {
<li v-for="item in routeStore.allRoutes"
:key="item.path"
:class="{ 'active-item' : item.path == $route.path }"
>{{ item.name }}</li>
><a :href="item.path">{{ item.name }}</a></li>
</ul>
</template></ClientOnly>
</nav>