feat:增加个人博客系统文档

This commit is contained in:
2026-06-08 16:08:00 +08:00
parent 9c11e484f3
commit 21414245d9
20 changed files with 371 additions and 14 deletions

View File

@@ -12,6 +12,8 @@ import './style/var.css'
import './style/vp-code.css'
import './style/custom-block.css'
import MyLayout from './components/MyLayout.vue';
import VPSwiper from '@cssnr/vitepress-swiper'
import '@cssnr/vitepress-swiper/style.css'
export default {
extends: DefaultTheme,
@@ -25,5 +27,6 @@ export default {
app.component("StatsChart", StatsChart);
app.component("MenuList", MenuList);
app.component("ArticleMetadata", ArticleMetadata);
app.component("VPSwiper", VPSwiper);
},
};

View File

@@ -23,16 +23,17 @@ export const routers = [
{ text: 'Spring IOC简介', link: '/Web/SpringBoot/Spring-IOC' },
{ text: 'Spring AOP简介', link: '/Web/SpringBoot/Spring-AOP' },
{ text: 'Spring MVC简介', link: '/Web/SpringBoot/Spring-MVC' },
{ text: 'SpringBoot启动流程', link: '/Web/SpringBoot/SpringBoot-Start-Process' },
{ text: 'SpringBoot Starter原理', link: '/Web/SpringBoot/SpringBoot-Starter' },
{ text: 'SpringBoot Bean简介', link: '/Web/SpringBoot/SpringBoot-Bean' },
{ text: 'SpringBoot注解', link: '/Web/SpringBoot/SpringBoot-Annotation' },
{ text: '启动流程', link: '/Web/SpringBoot/SpringBoot-Start-Process' },
{ text: 'Starter原理', link: '/Web/SpringBoot/SpringBoot-Starter' },
{ text: 'Bean简介', link: '/Web/SpringBoot/SpringBoot-Bean' },
{ text: '注解', link: '/Web/SpringBoot/SpringBoot-Annotation' },
{ text: 'SpringBoot3原生镜像', link: '/Web/SpringBoot/SpringBoot3-GraalVM' },
{ text: 'SpringBoot技巧', link: '/Web/SpringBoot/SpringBoot-Skills' },
{ text: 'SpringBoot RestClient简介', link: '/Web/SpringBoot/SpringBoot-RestClient' },
{ text: 'SpringBoot Redis简介和使用', link: '/Web/SpringBoot/SpringBoot-Redis' },
{ text: 'SpringBoot WebSocket使用', link: '/Web/SpringBoot/SpringBoot-WebSocket' },
{ text: 'SpringBoot 线程与事件', link: '/Web/SpringBoot/SpringBoot-Thread' }
{ text: 'RestClient简介', link: '/Web/SpringBoot/SpringBoot-RestClient' },
{ text: 'Redis简介和使用', link: '/Web/SpringBoot/SpringBoot-Redis' },
{ text: 'WebSocket简介和使用', link: '/Web/SpringBoot/SpringBoot-WebSocket' },
{ text: 'Quarzt简介和使用', link: '/Web/SpringBoot/SpringBoot-Quartz' },
{ text: '线程与事件', link: '/Web/SpringBoot/SpringBoot-Thread' }
]
},
{
@@ -116,7 +117,8 @@ export const routers = [
{
text: '👤 个人项目',
items: [
{ text: '家庭管理系统', link: '/Practice/Personal/SweetHut' }
{ text: '家庭管理系统', link: '/Practice/Personal/SweetHut' },
{ text: '个人博客系统', link: '/Practice/Personal/Blog' }
]
},
]

View File

@@ -36,6 +36,10 @@
border-top: none;
}
.vp-swiper-button {
color: #bd34fe;
}
strong {
color: #bd34fe;
color: #bd34fe;
}