-
-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat!: Rewrite component variable names
- Loading branch information
1 parent
951d7ad
commit 17bed4c
Showing
7 changed files
with
104 additions
and
114 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,8 +11,7 @@ dist | |
*.swp | ||
*.swo | ||
._* | ||
scss/ | ||
vue/ | ||
|
||
# Node.js模块 | ||
node_modules/ | ||
npm-debug.log | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,86 +1,85 @@ | ||
// src/footerData.ts | ||
export interface Link { | ||
name: string | ||
href: string | ||
} | ||
|
||
export interface Section { | ||
title: string | ||
links: Link[] | ||
internal?: boolean | ||
} | ||
|
||
export const sections: Section[] = [ | ||
{ | ||
title: 'GitHub Source', | ||
links: [ | ||
{ | ||
name: 'Theo-Docs', | ||
href: 'https://github.com/Theo-Messi/Theo-Docs' | ||
}, | ||
{ | ||
name: '玄学宝典', | ||
href: 'https://github.com/Theo-Messi/xx.theojs.cn' | ||
}, | ||
{ | ||
name: '阿里云盘资源分享', | ||
href: 'https://github.com/Theo-Messi/share.theojs.cn' | ||
}, | ||
{ | ||
name: '常用配置文件', | ||
href: 'https://github.com/Theo-Messi/dotfiles' | ||
} | ||
] | ||
export const Footer_Data = { | ||
beian: { | ||
icp: '鄂ICP备2024060426号', | ||
police: '粤公网安备44200102445449号' | ||
}, | ||
{ | ||
title: '合作伙伴', | ||
links: [ | ||
{ name: '银河录像局', href: 'https://nf.video/kaIuE' }, | ||
{ name: '奈飞小铺', href: 'https://ihezu.love/UKTer6' }, | ||
{ | ||
name: 'FlyingBird', | ||
href: 'https://fbinv01.fbaff.cc/auth/register?code=RZP3' | ||
}, | ||
{ | ||
name: 'Bridge The Wise', | ||
href: 'https://patriot.ninja/aff.php?aff=1471' | ||
}, | ||
{ | ||
name: 'SMS-Activate', | ||
href: 'https://sms-activate.org/?ref=8170513' | ||
} | ||
] | ||
author: { | ||
name: 'Theo-Messi', | ||
link: 'https://github.com/Theo-Messi', | ||
time: 2019 | ||
}, | ||
{ | ||
title: '观影指南', | ||
links: [ | ||
{ | ||
name: 'Netflix', | ||
href: 'https://doc.theojs.cn/streaming/Netflix-guide' | ||
}, | ||
{ | ||
name: 'Disney+', | ||
href: 'https://doc.theojs.cn/streaming/Disney-introduce' | ||
}, | ||
{ | ||
name: 'Spotify Premium', | ||
href: 'https://doc.theojs.cn/streaming/Spotify' | ||
}, | ||
{ | ||
name: 'YouTube Premium', | ||
href: 'https://doc.theojs.cn/streaming/YouTube' | ||
}, | ||
{ name: 'Hulu', href: 'https://doc.theojs.cn/streaming/Hulu' }, | ||
{ name: 'HBO Max', href: 'https://doc.theojs.cn/streaming/HBO-Max' } | ||
] | ||
}, | ||
{ | ||
title: '相关链接', | ||
links: [ | ||
{ name: 'Theo-Docs', href: 'https://doc.theojs.cn/' }, | ||
{ name: '玄学宝典', href: 'https://xx.theojs.cn/' }, | ||
{ name: '阿里云盘资源分享', href: 'https://share.theojs.cn/' }, | ||
{ name: 'VitePress', href: 'https://vitepress.dev/' } | ||
] | ||
} | ||
] | ||
group: [ | ||
{ | ||
title: 'GitHub Source', | ||
links: [ | ||
{ | ||
name: 'Theo-Docs', | ||
href: 'https://github.com/Theo-Messi/Theo-Docs' | ||
}, | ||
{ | ||
name: '玄学宝典', | ||
href: 'https://github.com/Theo-Messi/xx.theojs.cn' | ||
}, | ||
{ | ||
name: '阿里云盘资源分享', | ||
href: 'https://github.com/Theo-Messi/share.theojs.cn' | ||
}, | ||
{ | ||
name: '常用配置文件', | ||
href: 'https://github.com/Theo-Messi/dotfiles' | ||
} | ||
] | ||
}, | ||
{ | ||
title: '合作伙伴', | ||
links: [ | ||
{ name: '银河录像局', href: 'https://nf.video/kaIuE' }, | ||
{ name: '奈飞小铺', href: 'https://ihezu.love/UKTer6' }, | ||
{ | ||
name: 'FlyingBird', | ||
href: 'https://fbinv01.fbaff.cc/auth/register?code=RZP3' | ||
}, | ||
{ | ||
name: 'Bridge The Wise', | ||
href: 'https://patriot.ninja/aff.php?aff=1471' | ||
}, | ||
{ | ||
name: 'SMS-Activate', | ||
href: 'https://sms-activate.org/?ref=8170513' | ||
} | ||
] | ||
}, | ||
{ | ||
title: '观影指南', | ||
links: [ | ||
{ | ||
name: 'Netflix', | ||
href: 'https://doc.theojs.cn/streaming/Netflix-guide' | ||
}, | ||
{ | ||
name: 'Disney+', | ||
href: 'https://doc.theojs.cn/streaming/Disney-introduce' | ||
}, | ||
{ | ||
name: 'Spotify Premium', | ||
href: 'https://doc.theojs.cn/streaming/Spotify' | ||
}, | ||
{ | ||
name: 'YouTube Premium', | ||
href: 'https://doc.theojs.cn/streaming/YouTube' | ||
}, | ||
{ name: 'Hulu', href: 'https://doc.theojs.cn/streaming/Hulu' }, | ||
{ name: 'HBO Max', href: 'https://doc.theojs.cn/streaming/HBO-Max' } | ||
] | ||
}, | ||
{ | ||
title: '相关链接', | ||
links: [ | ||
{ name: 'Theo-Docs', href: 'https://doc.theojs.cn/' }, | ||
{ name: '玄学宝典', href: 'https://xx.theojs.cn/' }, | ||
{ name: '阿里云盘资源分享', href: 'https://share.theojs.cn/' }, | ||
{ name: 'VitePress', href: 'https://vitepress.dev/' } | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters