瀏覽代碼

fix:修改定时器时间从而修改主题加载失败的bug

Grnetsky 1 年之前
父節點
當前提交
e4304c2bb5
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/App.vue

+ 1 - 1
src/App.vue

@@ -15,7 +15,7 @@ onBeforeMount(() => {
   setTimeout(() => {
     registerTheme();
     changeTheme('le-dark');
-  }, 1000);
+  }, 0);
 });
 </script>
 <style lang="postcss" scoped></style>