feat:增加AList博客

This commit is contained in:
2025-12-18 10:13:00 +08:00
parent 228109ee81
commit fb404f2bcf
13 changed files with 162 additions and 45 deletions

View File

@@ -4,20 +4,8 @@ title: Web前端
description: Web前端开发技术文档
---
# Web 前端开发
前端开发技术栈的学习笔记和总结。
<script setup>
import { routers } from '../.vitepress/theme/router'
import { withBase } from 'vitepress'
</script>
<div v-for="category in routers[0].items" :key="category.text">
<h3>{{ category.text }}</h3>
<ul>
<li v-for="item in category.items" :key="item.text">
<a :href="withBase(item.link)">{{ item.text }}</a>
</li>
</ul>
</div>
<MenuList :routers=routers[0] :isNested=true />