浏览代码

fix: change mobile jump bug

richard1015 3 年之前
父节点
当前提交
a93feb00b5
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      src/sites/doc/main.ts

+ 2 - 1
src/sites/doc/main.ts

@@ -10,7 +10,8 @@ import NutUI from '@/packages/nutui.vue';
 import { isMobile } from '@/sites/assets/util';
 
 if (isMobile) {
-  location.replace('demo.html' + location.hash);
+  let url = location.hash.replace('/zh-CN/', '').replace('/en-US/', '');
+  location.replace('demo.html' + url);
 }
 
 createApp(App).directive('hover', Hover).component('demo-block', DemoBlock).use(router).use(NutUI).mount('#doc');