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

推荐订阅源

H
Help Net Security
S
Secure Thoughts
I
Intezer
Project Zero
Project Zero
Stack Overflow Blog
Stack Overflow Blog
D
Darknet – Hacking Tools, Hacker News & Cyber Security
F
Full Disclosure
P
Proofpoint News Feed
T
The Exploit Database - CXSecurity.com
人人都是产品经理
人人都是产品经理
博客园_首页
J
Java Code Geeks
Recorded Future
Recorded Future
K
Kaspersky official blog
GbyAI
GbyAI
S
Schneier on Security
The Cloudflare Blog
Spread Privacy
Spread Privacy
C
Cisco Blogs
The Hacker News
The Hacker News
博客园 - 三生石上(FineUI控件)
H
Hackread – Cybersecurity News, Data Breaches, AI and More
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
爱范儿
爱范儿
Microsoft Azure Blog
Microsoft Azure Blog
Know Your Adversary
Know Your Adversary
T
Tenable Blog
A
Arctic Wolf
Blog — PlanetScale
Blog — PlanetScale
H
Hacker News: Front Page
The Last Watchdog
The Last Watchdog
O
OpenAI News
Last Week in AI
Last Week in AI
B
Blog RSS Feed
T
Troy Hunt's Blog
G
GRAHAM CLULEY
N
Netflix TechBlog - Medium
Vercel News
Vercel News
量子位
The Register - Security
The Register - Security
Google Online Security Blog
Google Online Security Blog
Apple Machine Learning Research
Apple Machine Learning Research
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
C
CERT Recently Published Vulnerability Notes
Cisco Talos Blog
Cisco Talos Blog
U
Unit 42
Security Archives - TechRepublic
Security Archives - TechRepublic
C
Cyber Attacks, Cyber Crime and Cyber Security
N
News and Events Feed by Topic

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 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 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 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 />