This commit is contained in:
2026-02-21 18:48:18 +08:00
parent 9f3fd2ae9d
commit 8a55430d55
20 changed files with 2025 additions and 97 deletions

11
docs/.vitepress/theme/data/sidebar.d.ts vendored Normal file
View File

@@ -0,0 +1,11 @@
declare module '*.json' {
const value: {
title: string
path: string
items: {
text: string
link: string
}[]
}[]
export default value
}

View File

@@ -0,0 +1,64 @@
[
{
"title": "java",
"path": "/java/",
"items": [
{
"text": "概述",
"link": "/java/"
},
{
"text": "Java基础语法",
"link": "/java/basic"
},
{
"text": "集合框架",
"link": "/java/collection"
},
{
"text": "面向对象编程",
"link": "/java/oop"
},
{
"text": "多线程编程",
"link": "/java/thread"
}
]
},
{
"title": "vue",
"path": "/vue/",
"items": [
{
"text": "概述",
"link": "/vue/"
},
{
"text": "Vue3基础",
"link": "/vue/basic"
},
{
"text": "组件开发",
"link": "/vue/component"
},
{
"text": "组合式API",
"link": "/vue/composition"
},
{
"text": "状态管理",
"link": "/vue/pinia"
}
]
},
{
"title": "杂谈",
"path": "/杂谈/",
"items": [
{
"text": "概述",
"link": "/杂谈/"
}
]
}
]