Compare commits
22 Commits
1c3e10f9ac
...
main
Author | SHA1 | Date | |
---|---|---|---|
ebed1799dc | |||
d9857e16be | |||
cf372357f5 | |||
acdfb535a2 | |||
82684043bc | |||
d9e436b04e | |||
ced9235ba5 | |||
f697db86db | |||
af46ee45d9 | |||
7a1bffd4b1 | |||
618d72890a | |||
8f587f8dea | |||
83b3d7503b | |||
f6fb0b6ef2 | |||
647ce478f3 | |||
1542244d4c | |||
ab5078094f | |||
25add572e2 | |||
056f003e7f | |||
9022e5640a | |||
df3480a3eb | |||
2a0c858ce9 |
16
.vscode/settings.json
vendored
Normal file
16
.vscode/settings.json
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
{
|
||||
// 窗口失去焦点自动保存文件
|
||||
"files.autoSave": "onWindowChange",
|
||||
// 保存文件时删除行尾的空格
|
||||
"files.trimTrailingWhitespace": true,
|
||||
// 自动从当前 Git 仓库的默认远程仓库提取提交
|
||||
"git.autofetch": true,
|
||||
// 配置文件 File Nesting
|
||||
"explorer.fileNesting.enabled": true,
|
||||
"explorer.fileNesting.expand": false,
|
||||
"explorer.fileNesting.patterns": {
|
||||
"package.json": "package-lock.json,LICENSE",
|
||||
".gitignore": ".gitattributes",
|
||||
"tsconfig.json":"tsconfig.*.json,auto-imports.d.ts,components.d.ts,decs.d.ts",
|
||||
}
|
||||
}
|
@@ -2,6 +2,8 @@
|
||||
|
||||
“简单步骤与实用技巧”
|
||||
|
||||
> 文档地址:[coder-xiaomo.github.io/tutorials/](https://coder-xiaomo.github.io/tutorials/)
|
||||
>
|
||||
> 开源地址:
|
||||
> [GitHub](https://github.com/coder-xiaomo/tutorials)
|
||||
> [Gitee](https://gitee.com/coder-xiaomo/tutorials)
|
||||
|
47
develop/Git 脚本.md
Normal file
47
develop/Git 脚本.md
Normal file
@@ -0,0 +1,47 @@
|
||||
|
||||
```bash
|
||||
# 本地设置多远端
|
||||
git clone git@git.only4.work:coder-xiaomo/tutorials.git
|
||||
git remote add github git@github.com:coder-xiaomo/tutorials.git
|
||||
git remote add gitee git@gitee.com:coder-xiaomo/tutorials.git
|
||||
git remote add gitcode git@gitcode.com:coder-xiaomo/tutorials.git
|
||||
|
||||
git remote add all git@git.only4.work:coder-xiaomo/tutorials.git
|
||||
git remote set-url --add all git@github.com:coder-xiaomo/tutorials.git
|
||||
git remote set-url --add all git@gitee.com:coder-xiaomo/tutorials.git
|
||||
git remote set-url --add all git@gitcode.com:coder-xiaomo/tutorials.git
|
||||
|
||||
# 拉取全部仓库代码
|
||||
git fetch --all
|
||||
git pull --all
|
||||
|
||||
```
|
||||
|
||||
`.git/config` 文件部分配置如下:
|
||||
|
||||
```
|
||||
[branch "main"]
|
||||
remote = all
|
||||
merge = refs/heads/main
|
||||
|
||||
[remote "origin"]
|
||||
url = git@git.only4.work:coder-xiaomo/tutorials.git
|
||||
fetch = +refs/heads/*:refs/remotes/origin/*
|
||||
[remote "github"]
|
||||
url = git@github.com:coder-xiaomo/tutorials.git
|
||||
fetch = +refs/heads/*:refs/remotes/github/*
|
||||
pushurl = git@github.com:coder-xiaomo/tutorials.git
|
||||
[remote "gitee"]
|
||||
url = git@gitee.com:coder-xiaomo/tutorials.git
|
||||
fetch = +refs/heads/*:refs/remotes/gitee/*
|
||||
[remote "gitcode"]
|
||||
url = git@gitcode.com:coder-xiaomo/tutorials.git
|
||||
fetch = +refs/heads/*:refs/remotes/gitcode/*
|
||||
[remote "all"]
|
||||
url = git@git.only4.work:coder-xiaomo/tutorials.git
|
||||
fetch = +refs/heads/*:refs/remotes/all/*
|
||||
url = git@github.com:coder-xiaomo/tutorials.git
|
||||
url = git@gitee.com:coder-xiaomo/tutorials.git
|
||||
url = git@gitcode.com:coder-xiaomo/tutorials.git
|
||||
|
||||
```
|
@@ -1,6 +1,14 @@
|
||||
import { defineConfig } from 'vitepress'
|
||||
import { base } from '../env.mts'
|
||||
import { sidebar } from '../sidebar.mts'
|
||||
import { nav } from '../nav.mts'
|
||||
import {
|
||||
GitChangelog,
|
||||
GitChangelogMarkdownSection,
|
||||
} from '@nolebase/vitepress-plugin-git-changelog/vite'
|
||||
// import {
|
||||
// InlineLinkPreviewElementTransform
|
||||
// } from '@nolebase/vitepress-plugin-inline-link-preview/markdown-it'
|
||||
|
||||
// https://vitepress.dev/reference/site-config
|
||||
export default defineConfig({
|
||||
@@ -8,12 +16,51 @@ export default defineConfig({
|
||||
server: {
|
||||
port: 5678,
|
||||
},
|
||||
|
||||
plugins: [
|
||||
// [配置] 基于 Git 的页面历史
|
||||
GitChangelog({
|
||||
// 填写在此处填写您的仓库链接
|
||||
repoURL: () => 'https://github.com/coder-xiaomo/tutorials',
|
||||
}),
|
||||
GitChangelogMarkdownSection(),
|
||||
],
|
||||
|
||||
optimizeDeps: {
|
||||
exclude: [
|
||||
// [配置] 行内链接预览
|
||||
// '@nolebase/vitepress-plugin-inline-link-preview/client',
|
||||
// [配置] 阅读增强
|
||||
'@nolebase/vitepress-plugin-enhanced-readabilities/client',
|
||||
'vitepress',
|
||||
'@nolebase/ui',
|
||||
],
|
||||
},
|
||||
ssr: {
|
||||
noExternal: [
|
||||
// 如果还有别的依赖需要添加的话,并排填写和配置到这里即可 //
|
||||
// [配置] 行内链接预览
|
||||
// '@nolebase/vitepress-plugin-inline-link-preview',
|
||||
// [配置] 阅读增强
|
||||
'@nolebase/vitepress-plugin-enhanced-readabilities',
|
||||
'@nolebase/ui',
|
||||
// [配置] @theojs/lumen
|
||||
// issue: https://github.com/Theo-Messi/lumen/issues/234
|
||||
'dayjs',
|
||||
],
|
||||
},
|
||||
},
|
||||
|
||||
title: "就这么弄",
|
||||
title: "就这么弄 (🚧 施工中)",
|
||||
description: "简单步骤与实用技巧",
|
||||
|
||||
base: '/tutorials/',
|
||||
base: base,
|
||||
locales: {
|
||||
root: {
|
||||
label: '简体中文',
|
||||
lang: 'zh-CN',
|
||||
}
|
||||
},
|
||||
|
||||
themeConfig: {
|
||||
// https://vitepress.dev/reference/default-theme-config
|
||||
@@ -25,29 +72,72 @@ export default defineConfig({
|
||||
|
||||
sidebar: sidebar,
|
||||
|
||||
editLink: {
|
||||
text: '在 GitHub 上编辑此页面',
|
||||
pattern: 'https://github.com/coder-xiaomo/tutorials/edit/main/docs/:path',
|
||||
},
|
||||
|
||||
socialLinks: [
|
||||
// { icon: 'github', link: 'https://github.com/vuejs/vitepress' }
|
||||
{
|
||||
// GitHub repo
|
||||
icon: {
|
||||
svg: `<svg height="32" aria-hidden="true" viewBox="0 0 24 24" version="1.1" width="32" data-view-component="true" class="octicon octicon-mark-github v-align-middle"><path d="M12.5.75C6.146.75 1 5.896 1 12.25c0 5.089 3.292 9.387 7.863 10.91.575.101.79-.244.79-.546 0-.273-.014-1.178-.014-2.142-2.889.532-3.636-.704-3.866-1.35-.13-.331-.69-1.352-1.18-1.625-.402-.216-.977-.748-.014-.762.906-.014 1.553.834 1.769 1.179 1.035 1.74 2.688 1.25 3.349.948.1-.747.402-1.25.733-1.538-2.559-.287-5.232-1.279-5.232-5.678 0-1.25.445-2.285 1.178-3.09-.115-.288-.517-1.467.115-3.048 0 0 .963-.302 3.163 1.179.92-.259 1.897-.388 2.875-.388.977 0 1.955.13 2.875.388 2.2-1.495 3.162-1.179 3.162-1.179.633 1.581.23 2.76.115 3.048.733.805 1.179 1.825 1.179 3.09 0 4.413-2.688 5.39-5.247 5.678.417.36.776 1.05.776 2.128 0 1.538-.014 2.774-.014 3.162 0 .302.216.662.79.547C20.709 21.637 24 17.324 24 12.25 24 5.896 18.854.75 12.5.75Z"></path></svg>`
|
||||
},
|
||||
link: 'https://github.com/coder-xiaomo/tutorials',
|
||||
},
|
||||
{
|
||||
// Gitee repo
|
||||
// https://gitee.com/static/images/logo-en.svg
|
||||
icon: {
|
||||
svg: `<svg height="32" viewBox="0 0 32 32" width="32" xmlns="http://www.w3.org/2000/svg"><circle cx="16" cy="16" fill="#c71d23" r="16"/><path d="m24.0987698 14.2225144h-9.0863697c-.4362899.000207-.7900048.3538292-.790326.7901191l-.0005173 1.9752185c-.0003277.4363707.353328.7902117.7896987.790326.0000712 0 .0001424 0 .0002135-.0002135l5.5317648-.0000461c.4363708-.0000102.7901221.3537352.7901257.790106 0 .0000022 0 .0000044-.0000066.0000066v.1975077.1975318c0 1.3091122-1.0612451 2.3703573-2.3703573 2.3703573h-7.5067195c-.4363081-.0000218-.790009-.353713-.7900429-.7900211l-.0002069-7.5059917c-.0001014-1.3091122 1.0611145-2.3703865 2.3702267-2.3704226.0000217 0 .0000435 0 .0000653.0000653h11.0602463c.4361793-.0004902.7898484-.35394.7906091-.79011894l.0012251-1.97521881c.0007606-.43637034-.3527683-.79033806-.7891389-.79060871-.0001634-.0000001-.0003268-.00000015-.0004901.00048976h-11.0617654c-3.27278051 0-5.92589329 2.65311278-5.92589329 5.9258933v11.0612755c0 .4363707.35374837.7901191.7901191.7901191h11.65447149c2.9454379 0 5.3331872-2.3877493 5.3331872-5.3331872v-4.5430682c0-.4363707-.3537484-.7901191-.7901191-.7901191z" fill="#fff"/></svg>`
|
||||
},
|
||||
link: 'https://gitee.com/coder-xiaomo/tutorials',
|
||||
}
|
||||
},
|
||||
{
|
||||
// Gitcode repo
|
||||
icon: {
|
||||
svg: `<svg viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" width="200" height="200"><path d="M685.679715 183.998617l-40.447039 22.783459-9.343778 5.418538a203.259173 203.259173 0 0 1-124.583708 30.463276 239.268984 239.268984 0 0 0-81.192739 5.20521c-46.71889 12.714365-89.171216 4.778553-132.348856-12.543702a316.749811 316.749811 0 0 0-33.791198-9.045119l1.023976 24.106094c0.597319 14.506322 1.151973 27.988669 2.133283 41.471015 2.389277 31.572583-6.058523 60.286568-21.418158 88.189906a387.190804 387.190804 0 0 0-50.601465 196.390002c2.389277 111.570684 69.630346 194.427382 182.438334 230.010538 99.069647 31.31659 198.736613 29.951289 298.232917 5.546534a279.502695 279.502695 0 0 0 141.649969-83.752677c9.258447-10.026429 17.492918-20.991501 24.575416-32.681891 28.841982-48.68151 9.557106-94.205763-46.505562-103.464209a312.184586 312.184586 0 0 0-44.798936-3.413252l-15.146307-0.255994c-14.079666-0.127997-28.116666-0.255994-42.068334-1.450632-48.169523-3.92524-96.424377-8.277137-144.124577-15.786292-23.679438-3.839909-43.561632-19.412872-46.3349-45.35359-2.986596-28.500656 4.693222-57.214641 31.401921-71.038312a202.917847 202.917847 0 0 1 76.968839-23.46611c81.022076-5.759863 162.470808-0.511988 242.127582 15.487632 139.431355 28.585988 212.261625 166.268051 145.27655 292.259726-94.504422 177.489118-242.468908 279.886686-447.98936 284.707905-160.422857 3.839909-301.731501-47.102881-413.003525-165.244076C-122.365094 582.410488 3.071927 132.074517 369.612555 23.917085c169.979963-49.918814 327.800215-21.332827 471.45547 82.302046 51.625441 37.247115 64.851793 99.112313 34.473848 149.628446-25.258067 42.111-72.104954 61.182547-121.853106 49.66282-31.99924-7.466489-55.124024-38.996407-61.395876-82.472707l-0.98131-8.277137a123.474401 123.474401 0 0 0-1.791957-11.434395l-3.839909-19.327541z" fill="#DA203E"></path></svg>`
|
||||
},
|
||||
link: 'https://gitcode.com/coder-xiaomo/tutorials',
|
||||
},
|
||||
],
|
||||
|
||||
search: {
|
||||
provider: 'local'
|
||||
},
|
||||
|
||||
docFooter: {
|
||||
prev: '上一篇',
|
||||
next: '下一篇'
|
||||
},
|
||||
|
||||
outline: {
|
||||
label: '页面导航'
|
||||
},
|
||||
|
||||
lastUpdated: {
|
||||
text: '最近更新',
|
||||
formatOptions: {
|
||||
dateStyle: 'medium',
|
||||
timeStyle: 'short',
|
||||
}
|
||||
},
|
||||
}
|
||||
|
||||
langMenuLabel: '多语言',
|
||||
returnToTopLabel: '回到顶部',
|
||||
sidebarMenuLabel: '菜单',
|
||||
darkModeSwitchLabel: '主题',
|
||||
lightModeSwitchTitle: '切换到浅色模式',
|
||||
darkModeSwitchTitle: '切换到深色模式'
|
||||
},
|
||||
|
||||
// markdown: {
|
||||
// config(md) {
|
||||
// // 其他 markdown-it 配置... //
|
||||
// // [配置] 行内链接预览
|
||||
// // refer: https://nolebase-integrations.ayaka.io/pages/zh-CN/integrations/vitepress-plugin-inline-link-preview/getting-started
|
||||
// md.use(InlineLinkPreviewElementTransform)
|
||||
// }
|
||||
// },
|
||||
})
|
||||
|
63
docs/.vitepress/theme/components/Announcement.vue
Normal file
63
docs/.vitepress/theme/components/Announcement.vue
Normal file
@@ -0,0 +1,63 @@
|
||||
<template>
|
||||
<div v-if="isShow" class="announcement-container">
|
||||
<h3 class="announcement-title">{{ title }}</h3>
|
||||
<p class="announcement-content">{{ content }}</p>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { ref } from 'vue';
|
||||
|
||||
// 公告栏创意来自: https://lumen.theojs.cn/guide/announcement
|
||||
|
||||
const isShow = ref<boolean>(true)
|
||||
|
||||
const title = ref<string>(
|
||||
'hahaha'
|
||||
)
|
||||
|
||||
const content = ref<string>(
|
||||
'hahaha'
|
||||
)
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.announcement-container {
|
||||
background-color: #f0f0f0;
|
||||
border-radius: 10px;
|
||||
|
||||
/* 窄屏 */
|
||||
text-align: left;
|
||||
|
||||
width: min(80%, 360px);
|
||||
|
||||
padding: 10px 15px;
|
||||
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
margin-top: 32px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
@media (min-width: 960px) {
|
||||
.announcement-container {
|
||||
/* 宽屏 */
|
||||
text-align: unset;
|
||||
|
||||
width: 280px;
|
||||
|
||||
padding: 15px 20px;
|
||||
|
||||
margin-left: unset;
|
||||
margin-right: unset;
|
||||
margin-top: unset;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
}
|
||||
|
||||
.announcement-title {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.announcement-content {}
|
||||
</style>
|
@@ -9,3 +9,8 @@
|
||||
/* 首页与顶部之间的距离加高 */
|
||||
padding-top: calc(var(--vp-nav-height) + 48px) !important;
|
||||
}
|
||||
|
||||
/* [配置] 阅读增强 */
|
||||
.VPSocialLinks.VPNavBarSocialLinks.social-links {
|
||||
margin-right: 0;
|
||||
}
|
||||
|
@@ -4,17 +4,105 @@ import type { Theme } from 'vitepress'
|
||||
import DefaultTheme from 'vitepress/theme'
|
||||
import './style.css'
|
||||
import './custom.css'
|
||||
import Announcement from './components/Announcement.vue'
|
||||
import ArticleInfo from './components/ArticleInfo.vue'
|
||||
import { FooterData } from '../../home-footbar.mts'
|
||||
import {
|
||||
HomeFooter,
|
||||
HomeUnderline,
|
||||
ShareButton
|
||||
} from '@theojs/lumen'
|
||||
import {
|
||||
NolebaseGitChangelogPlugin
|
||||
} from '@nolebase/vitepress-plugin-git-changelog/client'
|
||||
import {
|
||||
LayoutMode,
|
||||
NolebaseEnhancedReadabilitiesMenu,
|
||||
NolebaseEnhancedReadabilitiesScreenMenu,
|
||||
} from '@nolebase/vitepress-plugin-enhanced-readabilities/client'
|
||||
import type { Options } from '@nolebase/vitepress-plugin-enhanced-readabilities/client'
|
||||
import { InjectionKey } from '@nolebase/vitepress-plugin-enhanced-readabilities/client'
|
||||
|
||||
import '@nolebase/vitepress-plugin-git-changelog/client/style.css'
|
||||
import '@nolebase/vitepress-plugin-enhanced-readabilities/client/style.css'
|
||||
|
||||
export default {
|
||||
extends: DefaultTheme,
|
||||
Layout: () => {
|
||||
return h(DefaultTheme.Layout, null, {
|
||||
// https://vitepress.dev/guide/extending-default-theme#layout-slots
|
||||
// 首页公告栏
|
||||
'home-hero-info-before': () => h(Announcement),
|
||||
// 文档前内容
|
||||
'doc-before': () => h(ArticleInfo),
|
||||
// [配置] 阅读增强
|
||||
// 为较宽的屏幕的导航栏添加阅读增强菜单
|
||||
'nav-bar-content-after': () => h(NolebaseEnhancedReadabilitiesMenu),
|
||||
// 为较窄的屏幕(通常是小于 iPad Mini)添加阅读增强菜单
|
||||
'nav-screen-content-after': () => h(NolebaseEnhancedReadabilitiesScreenMenu),
|
||||
// [配置] 首页 Footbar
|
||||
'layout-bottom': () => h(HomeFooter, { Footer_Data: FooterData }),
|
||||
// [配置] 侧栏分享按钮
|
||||
'aside-outline-before': () => h(ShareButton, {
|
||||
buttonIcon: 'fa6-solid:share-nodes', // 自定义图标 //
|
||||
buttonText: '分享此页面', // 自定义按钮文本 //
|
||||
copiedIcon: 'mdi:thumbs-up', // 自定义复制成功后的图标 //
|
||||
copiedText: '链接已复制!' // 自定义复制成功后的文本 //
|
||||
}),
|
||||
})
|
||||
},
|
||||
enhanceApp({ app, router, siteData }) {
|
||||
// ...
|
||||
// [配置] 基于 Git 的页面历史
|
||||
app.use(NolebaseGitChangelogPlugin, {
|
||||
// see: https://nolebase-integrations.ayaka.io/pages/zh-CN/integrations/vitepress-plugin-git-changelog/configure-ui
|
||||
locales: {
|
||||
'zh-CN': {
|
||||
changelog: {
|
||||
title: '页面历史',
|
||||
noData: '暂无最近变更历史',
|
||||
lastEdited: '本页面最后编辑于 {{daysAgo}}',
|
||||
lastEditedDateFnsLocaleName: 'zhCN',
|
||||
viewFullHistory: '查看完整历史',
|
||||
committedOn: '于 {{date}} 提交',
|
||||
}
|
||||
},
|
||||
}
|
||||
})
|
||||
|
||||
// [配置] 阅读增强
|
||||
app.provide(InjectionKey, {
|
||||
// refer: node_modules/@nolebase/vitepress-plugin-enhanced-readabilities/dist/locales/index.mjs
|
||||
locales: { // 配置国际化 //
|
||||
'zh-CN': { // 配置简体中文 //
|
||||
title: {
|
||||
title: '阅读增强插件',
|
||||
},
|
||||
layoutSwitch: {
|
||||
titleHelpMessage: '调整页面布局样式,以适配不同的阅读习惯和屏幕环境。',
|
||||
optionOriginalWidthHelpMessage: '默认布局宽度',
|
||||
contentLayoutMaxWidth: {
|
||||
titleHelpMessage: '调整页面布局中内容区域的宽度,以适配不同的阅读习惯和屏幕环境。'
|
||||
},
|
||||
pageLayoutMaxWidth: {
|
||||
titleHelpMessage: '调整页面布局中页面的宽度,以适配不同的阅读习惯和屏幕环境。'
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
layoutSwitch: {
|
||||
defaultMode: LayoutMode.BothWidthAdjustable,
|
||||
pageLayoutMaxWidth: {
|
||||
defaultMaxWidth: 96, // 60 - 100
|
||||
},
|
||||
contentLayoutMaxWidth: {
|
||||
defaultMaxWidth: 90, // 60 - 100
|
||||
}
|
||||
},
|
||||
} as Options)
|
||||
|
||||
// [配置] 首页下划线
|
||||
// docs: https://lumen.theojs.cn/guide/homeunderline
|
||||
app.component('Home', HomeUnderline)
|
||||
}
|
||||
} satisfies Theme
|
||||
|
@@ -29,6 +29,7 @@
|
||||
|
||||
<script setup lang="ts">
|
||||
import { useRouter, DefaultTheme } from 'vitepress';
|
||||
import { base } from '../env.mts';
|
||||
|
||||
const props = defineProps<{
|
||||
base?: string,
|
||||
@@ -38,7 +39,8 @@ const props = defineProps<{
|
||||
const router = useRouter()
|
||||
|
||||
function goTo(link: string) {
|
||||
const target = (props.base || '') + link?.replace('.md', '.html')
|
||||
const baseUrl = (base.endsWith('/') ? base.substring(0, base.length - 1) : base)
|
||||
const target = baseUrl + (props.base || '') + link?.replace('.md', '.html')
|
||||
console.log('base', props.base)
|
||||
console.log('link', link)
|
||||
console.log('target', target)
|
||||
|
5
docs/env.mts
Normal file
5
docs/env.mts
Normal file
@@ -0,0 +1,5 @@
|
||||
// 全局配置
|
||||
|
||||
// 部署后网站的 base URL。
|
||||
// 注意:前后都带 /
|
||||
export const base = '/tutorials/'
|
42
docs/home-footbar.mts
Normal file
42
docs/home-footbar.mts
Normal file
@@ -0,0 +1,42 @@
|
||||
import type { FooterData as FooterDataType } from '@theojs/lumen'
|
||||
|
||||
// [配置] 首页 Footbar
|
||||
export const FooterData: FooterDataType = {
|
||||
// beian: { icp: '备案号', police: '公网安备号', showIcon: true },
|
||||
author: {
|
||||
name: 'coder-xiaomo', // 程序员小墨
|
||||
// link: 'https://',
|
||||
},
|
||||
group: [
|
||||
// {
|
||||
// title: '外部链接',
|
||||
// icon: 'bx:link', // `iconify`图标
|
||||
// color: 'rgba(255, 87, 51, 1)',
|
||||
// links: [
|
||||
// { name: '示例1', link: 'https://', icon: 'solar:book-bold' },
|
||||
// { name: '示例2', link: 'https://' }
|
||||
// ]
|
||||
// },
|
||||
{
|
||||
title: '开源地址',
|
||||
icon: 'bx:link',
|
||||
color: 'rgba(255, 87, 51, 1)',
|
||||
links: [
|
||||
{
|
||||
name: 'GitHub',
|
||||
icon: 'octicon:mark-github-16',
|
||||
link: 'https://github.com/coder-xiaomo/tutorials',
|
||||
},
|
||||
{
|
||||
name: 'Gitee (码云)',
|
||||
link: 'https://gitee.com/coder-xiaomo/tutorials',
|
||||
},
|
||||
{
|
||||
name: 'GitCode',
|
||||
link: 'https://gitcode.com/coder-xiaomo/tutorials',
|
||||
},
|
||||
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@@ -4,29 +4,38 @@ layout: home
|
||||
|
||||
hero:
|
||||
name: "就这么弄"
|
||||
text: "简单步骤与实用技巧"
|
||||
text: "简单步骤"
|
||||
textsuffix: "与实用技巧"
|
||||
image:
|
||||
src: /assets/logo.svg
|
||||
alt: VitePress
|
||||
style: "border-radius: 50%"
|
||||
tagline: 时间应该更重要的事情
|
||||
tagline: 你的时间应该去做更重要的事情
|
||||
actions:
|
||||
- theme: brand
|
||||
text: 进入教程
|
||||
link: /how-to/intro
|
||||
- theme: alt
|
||||
text: Markdown Examples
|
||||
link: /markdown-examples
|
||||
- theme: alt
|
||||
text: API Examples
|
||||
link: /api-examples
|
||||
# - theme: alt
|
||||
# text: Markdown Examples
|
||||
# link: /markdown-examples
|
||||
# - theme: alt
|
||||
# text: API Examples
|
||||
# link: /api-examples
|
||||
|
||||
features:
|
||||
- title: Feature A
|
||||
details: Lorem ipsum dolor sit amet, consectetur adipiscing elit
|
||||
- title: Feature B
|
||||
details: Lorem ipsum dolor sit amet, consectetur adipiscing elit
|
||||
- title: Feature C
|
||||
details: Lorem ipsum dolor sit amet, consectetur adipiscing elit
|
||||
# features:
|
||||
# - title: Feature A
|
||||
# details: Lorem ipsum dolor sit amet, consectetur adipiscing elit
|
||||
# - title: Feature B
|
||||
# details: Lorem ipsum dolor sit amet, consectetur adipiscing elit
|
||||
# - title: Feature C
|
||||
# details: Lorem ipsum dolor sit amet, consectetur adipiscing elit
|
||||
---
|
||||
|
||||
<Home />
|
||||
|
||||
::: warning 🚧 施工中
|
||||
|
||||
很高兴见到你!但很抱歉,这个项目还在施工中。
|
||||
|
||||
本项目还处在早期阶段,内容尚不完善,过段时间再来看吧
|
||||
:::
|
@@ -2,11 +2,11 @@ import { DefaultTheme } from 'vitepress'
|
||||
|
||||
export const nav: DefaultTheme.NavItem[] = [
|
||||
{
|
||||
text: 'Home',
|
||||
text: '首页',
|
||||
link: '/',
|
||||
},
|
||||
{
|
||||
text: 'Home2',
|
||||
text: '教程',
|
||||
link: '/how-to/intro',
|
||||
activeMatch: '/how-to/',
|
||||
},
|
||||
|
2119
package-lock.json
generated
2119
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -8,9 +8,12 @@
|
||||
"docs:preview": "vitepress preview docs"
|
||||
},
|
||||
"dependencies": {
|
||||
"@theojs/lumen": "^5.4.0",
|
||||
"vue": "^3.5.13"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@nolebase/vitepress-plugin-enhanced-readabilities": "^2.15.1",
|
||||
"@nolebase/vitepress-plugin-git-changelog": "^2.15.1",
|
||||
"vitepress": "^1.6.3"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user