惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园_首页
量子位
D
DataBreaches.Net
博客园 - 司徒正美
J
Java Code Geeks
博客园 - 【当耐特】
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
aimingoo的专栏
aimingoo的专栏
B
Blog
The Cloudflare Blog
D
Docker
I
InfoQ
爱范儿
爱范儿
MongoDB | Blog
MongoDB | Blog
腾讯CDC
月光博客
月光博客
Hugging Face - Blog
Hugging Face - Blog
Microsoft Azure Blog
Microsoft Azure Blog
Vercel News
Vercel News
阮一峰的网络日志
阮一峰的网络日志
小众软件
小众软件
S
SegmentFault 最新的问题
GbyAI
GbyAI
有赞技术团队
有赞技术团队

Hyde Blog

Hyde Blog Hyde Blog Hyde Blog Hyde Blog Hyde Blog Hyde Blog Hyde Blog Hyde Blog Hyde Blog Hyde Blog Hyde Blog Hyde Blog Hyde Blog Hyde Blog Hyde Blog Hyde Blog Hyde Blog Hyde Blog Hyde Blog Hyde Blog Hyde Blog Hyde Blog Hyde Blog Hyde Blog Hyde Blog Hyde Blog Hyde Blog Hyde Blog Hyde Blog Hyde Blog
Hyde Blog
Hyde · 2025-10-19 · via Hyde Blog

个人主页 ​

创建组件 ​

  • docs\.vitepress\theme\components\新建homepage文件,分别创建以下组件和代码

md

├─ docs
│ └─ .vitepress
│ │ └─ theme
│ │ │ └─ components
│ │ │ │ └─ homepage
│ │ │ │ │ └─ data  ---数据
│ │ │ │ │ │ └─ useAnimation.ts
│ │ │ │ │ │ └─ useData.ts
│ │ │ │ │ │ └─ useUtils.js
│ │ │ │ └─ sections  ---组件
│ │ │ │ │ │ └─ AboutPage.vue
│ │ │ │ │ │ └─ AppFooter.vue
│ │ │ │ │ │ └─ AppHeader.vue
│ │ │ │ │ │ └─ AuthorSection.vue
│ │ │ │ │ │ └─ BuffSection.vue
│ │ │ │ │ │ └─ ComicSection.vue
│ │ │ │ │ │ └─ GameSection.vue
│ │ │ │ │ │ └─ HelloSection.vue
│ │ │ │ │ │ └─ IntroSection.vue
│ │ │ │ │ │ └─ JourneySection.vue
│ │ │ │ │ │ └─ MaximSection.vue
│ │ │ │ │ │ └─ MusicSection.vue
│ │ │ │ │ │ └─ MyPhotoSection.vue
│ │ │ │ │ │ └─ PersonalitiesSection.vue
│ │ │ │ │ │ └─ SkillsSection.vue
│ │ │ │ │ │ └─ StatisticSection.vue
│ │ │ │ │ │ └─ TechnologySection.vue
│ │ │ │ └─ styles  ---样式
│ │ │ │ │ └─ global.css
│ │ │ │ │ └─ variables.scss
│ │ │ │ └─ type  ---类型
│ │ │ │ │ └─ index.d.ts
└─ package.json

注册组件 ​

  • docs\90.站点信息\20.个人主页.md中注册组件

md

---
date: 2025-07-12 03:13:56
title: 关于我
layout: page # 必须指定为page
description: 认识一下打造这个项目的核心团队成员
permalink: /homepage
categories:
  - 站点信息
coverImg: /home/bg11.webp
sidebar: false
article: false
comment: false
---

<script setup>
import homepage from '../.vitepress/theme/components/homepage/sections/AboutPage.vue'
</script>

<homepage />