完整版BedrockWiki镜像!

This commit is contained in:
boybook
2025-03-20 11:52:46 +08:00
parent 1994c41f01
commit bf9aa4b056
214 changed files with 9042 additions and 8867 deletions

View File

@@ -2,6 +2,9 @@ import DefaultTheme from 'vitepress/theme'
import MyFeatures from './components/MyFeatures.vue'
import CodeHeader from './components/content/CodeHeader.vue'
import WikiImage from './components/content/WikiImage.vue'
import Button from './components/content/Button.vue'
import FolderView from './components/content/FolderView/FolderView.vue'
import Checklist from './components/content/Checklist.vue'
export default {
extends: DefaultTheme,
@@ -9,5 +12,8 @@ export default {
app.component('MyFeatures', MyFeatures);
app.component('CodeHeader', CodeHeader);
app.component('WikiImage', WikiImage);
app.component('BButton', Button);
app.component('Checklist', Checklist);
app.component('FolderView', FolderView);
}
}