Przeglądaj źródła

fix: route change error

Carson 9 miesięcy temu
rodzic
commit
226ff4f2de
3 zmienionych plików z 14 dodań i 14 usunięć
  1. 11 11
      .vitepress/config.mts
  2. 3 1
      components/HomeContent.vue
  3. 0 2
      components/Search/index.vue

+ 11 - 11
.vitepress/config.mts

@@ -96,20 +96,20 @@ let { rootSideBar, zhHKSideBar, enUSSideBar } = buildSideBar(
   contents,
   sideBarSortMap
 );
-import util from "util";
-console.log(
-  util.inspect(sideBarSortMap, {
-    showHidden: false,
-    depth: null,
-    colors: true,
-  }),
-  util.inspect(rootSideBar, { showHidden: false, depth: null, colors: true })
-);
+// import util from "util";
+// console.log(
+//   util.inspect(sideBarSortMap, {
+//     showHidden: false,
+//     depth: null,
+//     colors: true,
+//   }),
+//   util.inspect(rootSideBar, { showHidden: false, depth: null, colors: true })
+// );
 
 // https://vitepress.dev/reference/site-config
 export default defineConfig({
-  title: "CocoBlockly帮助文档",
-  description: "Cococlass help documents",
+  title: "可可智慧教育平台",
+  description: "可可智慧教育平台",
   srcDir: DOC_BASE_PATH,
   ignoreDeadLinks: true,
   lastUpdated: true,

+ 3 - 1
components/HomeContent.vue

@@ -25,7 +25,9 @@ const withLink = (href: string) => {
   <div class="home-content">
     <HomeSection title="您好,需要提供什么帮助?">
       <HomeSectionContent>
-        <Search />
+        <ClientOnly>
+          <Search />
+        </ClientOnly>
       </HomeSectionContent>
     </HomeSection>
 

+ 0 - 2
components/Search/index.vue

@@ -12,8 +12,6 @@ import { Search } from "@element-plus/icons-vue";
 import { watchDebounced, useFocus, computedAsync } from "@vueuse/core";
 import { useI18n } from "vue-i18n";
 import { useData } from 'vitepress'
-import { LRUCache } from 'vitepress/dist/client/theme-default/support/lru'
-import { pathToFile } from 'vitepress/dist/client/app/utils'
 import { escapeRegExp } from 'vitepress/dist/client/shared'
 import _ from "lodash";