docs: update docs

This commit is contained in:
pengzhanbo 2025-10-09 21:30:16 +08:00
parent 4a8fd3f7fc
commit a8c689f6e9
3 changed files with 25 additions and 34 deletions

View File

@ -158,25 +158,7 @@ npm run docs:dev
感谢所有的贡献者!
<Contributors
:contributors="[
'pengzhanbo',
{ github: 'huankong233', name: 'huan_kong' },
{ github: 'northword', name: 'Northword' },
'KrLite',
'shylock-wu',
'hrradev',
{ github: 'TheCoderAlex', name: 'Tang Zifeng' },
{ github: 'HydroGest', name: 'MarkChai' },
{ github: 'sunnyboy-mu', name: '小沐沐吖' },
{ github: 'zhenghaoyang24', name: 'zhenghaoyang24' },
{ github: 'shuoliuchn', name: 'Shuo Liu' },
'Hammuu1112',
'SherkeyXD',
{ github: 'Kinneyzhang', name: 'Geekinney' },
'huyunan',
]"
/>
<Contributors :contributors="data" />
</div>
@ -188,4 +170,5 @@ npm run docs:dev
<script setup>
import Contributors from '~/components/Contributors.vue'
import data from '@source/contributors.json'
</script>

17
docs/contributors.json Normal file
View File

@ -0,0 +1,17 @@
[
"pengzhanbo",
{ "github": "huankong233", "name": "huan_kong" },
{ "github": "northword", "name": "Northword" },
"KrLite",
"shylock-wu",
"hrradev",
{ "github": "TheCoderAlex", "name": "Tang Zifeng" },
{ "github": "HydroGest", "name": "MarkChai" },
{ "github": "sunnyboy-mu", "name": "小沐沐吖" },
{ "github": "zhenghaoyang24", "name": "zhenghaoyang24" },
{ "github": "shuoliuchn", "name": "Shuo Liu" },
"Hammuu1112",
"SherkeyXD",
{ "github": "Kinneyzhang", "name": "Geekinney" },
"huyunan"
]

View File

@ -173,21 +173,7 @@ export default defineUserConfig({
### Contributors
<Contributors
:contributors="[
'pengzhanbo',
{ github: 'huankong233', name: 'huan_kong' },
{ github: 'northword', name: 'Northword' },
'KrLite',
'shylock-wu',
'hrradev',
{ github: 'TheCoderAlex', name: 'Tang Zifeng' },
{ github: 'HydroGest', name: 'MarkChai' },
{ github: 'sunnyboy-mu', name: '小沐沐吖' },
{ github: 'zhenghaoyang24', name: 'zhenghaoyang24' },
{ github: 'shuoliuchn', name: 'Shuo Liu' },
]"
/>
<Contributors :contributors="data" />
</div>
@ -196,3 +182,8 @@ export default defineUserConfig({
cursor: default !important;
}
</style>
<script setup>
import Contributors from '~/components/Contributors.vue'
import data from '@source/contributors.json'
</script>