feat:更新文档架构
This commit is contained in:
@@ -30,11 +30,9 @@ export default withMermaid({
|
||||
...routers
|
||||
],
|
||||
sidebar: {
|
||||
'/Web-Front/': [routers[0]],
|
||||
'/Web-Backend/': [routers[1]],
|
||||
'/DevOps/': [routers[2]],
|
||||
'/Flutter/': [routers[3]],
|
||||
'/Others/': [routers[4]]
|
||||
'/Web/': [routers[0]],
|
||||
'/DevOps/': [routers[1]],
|
||||
'/Others/': [routers[2]]
|
||||
},
|
||||
|
||||
socialLinks: [
|
||||
|
||||
@@ -1,73 +1,73 @@
|
||||
export const routers = [
|
||||
{
|
||||
text: '🌐 Web前端',
|
||||
text: '🌐 Web平台',
|
||||
items: [
|
||||
{
|
||||
text: '🌿 Vue',
|
||||
items: [
|
||||
{ text: 'Vue3-Common', link: '/Web-Front/Vue/Vue3-Common' },
|
||||
{ text: 'Vue3架构原理', link: '/Web-Front/Vue/Vue3-Architecture' }
|
||||
{ text: 'Vue3-Common', link: '/Web/Vue/Vue3-Common' },
|
||||
{ text: 'Vue3架构原理', link: '/Web/Vue/Vue3-Architecture' }
|
||||
]
|
||||
},
|
||||
{
|
||||
text: '🔄 其他',
|
||||
items: [
|
||||
{ text: 'JavaScript知识点整理', link: '/Web-Front/Others/JavaScript-Guide' },
|
||||
{ text: '前端包管理器', link: '/Web-Front/Others/Package' },
|
||||
{ text: 'Vite核心原理', link: '/Web-Front/Others/Vite-Principle' },
|
||||
{ text: '浏览器渲染全流程解析', link: '/Web-Front/Others/Browser-Process' },
|
||||
{ text: 'Element Plus 上传器', link: '/Web-Front/Others/ElUpload' }
|
||||
]
|
||||
},
|
||||
]
|
||||
},
|
||||
{
|
||||
text: '🖥️ Web后端',
|
||||
items: [
|
||||
{
|
||||
text: '🍃 SpringBoot',
|
||||
items: [
|
||||
{ text: 'Spring IOC简介', link: '/Web-Backend/SpringBoot/SpringIOC' },
|
||||
{ text: 'Spring AOP简介', link: '/Web-Backend/SpringBoot/SpringAOP' },
|
||||
{ text: 'SpringBoot启动流程', link: '/Web-Backend/SpringBoot/SpringBoot-Start-Process' },
|
||||
{ text: 'Spring MVC简介', link: '/Web-Backend/SpringBoot/SpringMVC' },
|
||||
{ text: 'SpringBoot Starter原理', link: '/Web-Backend/SpringBoot/SpringBootStarter' },
|
||||
{ text: 'SpringBoot Bean简介', link: '/Web-Backend/SpringBoot/SpringBootBean' },
|
||||
{ text: 'SpringBoot注解', link: '/Web-Backend/SpringBoot/SpringBoot-Annotation' },
|
||||
{ text: 'SpringBoot3原生镜像', link: '/Web-Backend/SpringBoot/SpringBoot3-GraalVM' },
|
||||
{ text: 'SpringBoot技巧', link: '/Web-Backend/SpringBoot/SpringBoot-Skills' },
|
||||
{ text: 'SpringBoot Common', link: '/Web-Backend/SpringBoot/SpringBoot-Common' },
|
||||
{ text: 'SpringBoot RestClient简介', link: '/Web-Backend/SpringBoot/SpringBoot-RestClient' },
|
||||
{ text: 'SpringBoot Redis简介和使用', link: '/Web-Backend/SpringBoot/SpringBoot-Redis' }
|
||||
{ text: 'Spring IOC简介', link: '/Web/SpringBoot/SpringIOC' },
|
||||
{ text: 'Spring AOP简介', link: '/Web/SpringBoot/SpringAOP' },
|
||||
{ text: 'SpringBoot启动流程', link: '/Web/SpringBoot/SpringBoot-Start-Process' },
|
||||
{ text: 'Spring MVC简介', link: '/Web/SpringBoot/SpringMVC' },
|
||||
{ text: 'SpringBoot Starter原理', link: '/Web/SpringBoot/SpringBootStarter' },
|
||||
{ text: 'SpringBoot Bean简介', link: '/Web/SpringBoot/SpringBootBean' },
|
||||
{ text: 'SpringBoot注解', link: '/Web/SpringBoot/SpringBoot-Annotation' },
|
||||
{ text: 'SpringBoot3原生镜像', link: '/Web/SpringBoot/SpringBoot3-GraalVM' },
|
||||
{ text: 'SpringBoot技巧', link: '/Web/SpringBoot/SpringBoot-Skills' },
|
||||
{ text: 'SpringBoot Common', link: '/Web/SpringBoot/SpringBoot-Common' },
|
||||
{ text: 'SpringBoot RestClient简介', link: '/Web/SpringBoot/SpringBoot-RestClient' },
|
||||
{ text: 'SpringBoot Redis简介和使用', link: '/Web/SpringBoot/SpringBoot-Redis' }
|
||||
]
|
||||
},
|
||||
{
|
||||
text: '🐍 FastAPI',
|
||||
items: [
|
||||
{ text: 'FastAPI基础教程', link: '/Web-Backend/FastAPI/FastAPI-Guide' },
|
||||
{ text: '基于OAuth2的安全验证', link: '/Web-Backend/FastAPI/OAuth2' },
|
||||
{ text: 'FastAPI Docker部署', link: '/Web-Backend/FastAPI/FastAPI-Docker' }
|
||||
{ text: 'FastAPI基础教程', link: '/Web/FastAPI/FastAPI-Guide' },
|
||||
{ text: '基于OAuth2的安全验证', link: '/Web/FastAPI/OAuth2' },
|
||||
{ text: 'FastAPI Docker部署', link: '/Web/FastAPI/FastAPI-Docker' }
|
||||
]
|
||||
},
|
||||
{
|
||||
text: '🐬 MySQL',
|
||||
items: [
|
||||
{ text: 'MyBatis简介和使用', link: '/Web-Backend/MySQL/MyBatis' },
|
||||
{ text: 'Flyway简单使用', link: '/Web-Backend/MySQL/Flyway' },
|
||||
{ text: 'MySQL知识点', link: '/Web-Backend/MySQL/MySQL-Knowledge' },
|
||||
{ text: 'SQL高阶用法', link: '/Web-Backend/MySQL/SQL-Advance' }
|
||||
{ text: 'MyBatis简介和使用', link: '/Web/MySQL/MyBatis' },
|
||||
{ text: 'Flyway简单使用', link: '/Web/MySQL/Flyway' },
|
||||
{ text: 'MySQL知识点', link: '/Web/MySQL/MySQL-Knowledge' },
|
||||
{ text: 'SQL高阶用法', link: '/Web/MySQL/SQL-Advance' }
|
||||
]
|
||||
},
|
||||
{
|
||||
text: '📱 Flutter',
|
||||
items: [
|
||||
{ text: 'Flutter简介与安装', link: '/Web/Flutter/FlutterInstall' },
|
||||
{ text: 'Dart基础教程', link: '/Web/Flutter/DartGuide' },
|
||||
{ text: 'Flutter基础教程', link: '/Web/Flutter/FlutterGuide' },
|
||||
{ text: '实战技巧', link: '/Web/Flutter/Practice' }
|
||||
]
|
||||
},
|
||||
{
|
||||
text: '🔄 其他',
|
||||
items: [
|
||||
{ text: 'RustFS简介和使用', link: '/Web-Backend/Others/RustFS' },
|
||||
{ text: 'AList简介和使用', link: '/Web-Backend/Others/AList' },
|
||||
{ text: '网络编程简介', link: '/Web-Backend/Others/Netword-Program' },
|
||||
{ text: '视频压缩', link: '/Web-Backend/Others/VideoCompressor' }
|
||||
{ text: 'JavaScript知识点整理', link: '/Web/Others/JavaScript-Guide' },
|
||||
{ text: '前端包管理器', link: '/Web/Others/Package' },
|
||||
{ text: 'Vite核心原理', link: '/Web/Others/Vite-Principle' },
|
||||
{ text: '浏览器渲染全流程解析', link: '/Web/Others/Browser-Process' },
|
||||
{ text: 'Element Plus 上传器', link: '/Web/Others/ElUpload' },
|
||||
{ text: 'RustFS简介和使用', link: '/Web/Others/RustFS' },
|
||||
{ text: 'AList简介和使用', link: '/Web/Others/AList' },
|
||||
{ text: 'InfluxDB简介和使用', link: '/Web/Others/InfluxDB' },
|
||||
{ text: '网络编程简介', link: '/Web/Others/Netword-Program' },
|
||||
{ text: '视频压缩', link: '/Web/Others/VideoCompressor' }
|
||||
]
|
||||
},
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
text: '🚀 DevOps',
|
||||
@@ -75,18 +75,10 @@ export const routers = [
|
||||
{ text: 'OpenObserve部署和使用', link: '/DevOps/OpenObserve' },
|
||||
{ text: 'Jenkins部署和使用', link: '/DevOps/Jenkins' },
|
||||
{ text: 'ElasticSearch部署和使用', link: '/DevOps/ElasticSearch' },
|
||||
{ text: 'Docker简介和安装', link: '/DevOps/Docker' }
|
||||
{ text: 'Docker简介和安装', link: '/DevOps/Docker' },
|
||||
{ text: 'Linux命令', link: '/DevOps/LinuxCommand' }
|
||||
]
|
||||
},
|
||||
{
|
||||
text: '📱 Flutter',
|
||||
items: [
|
||||
{ text: 'Flutter简介与安装', link: '/Flutter/FlutterInstall' },
|
||||
{ text: 'Dart基础教程', link: '/Flutter/DartGuide' },
|
||||
{ text: 'Flutter基础教程', link: '/Flutter/FlutterGuide' },
|
||||
{ text: '实战技巧', link: '/Flutter/Practice' }
|
||||
]
|
||||
},
|
||||
{
|
||||
text: '🔄 其他',
|
||||
items: [
|
||||
|
||||
Reference in New Issue
Block a user