XIUGAI BUG
This commit is contained in:
parent
33e6864358
commit
71d2975bfd
|
@ -159,15 +159,14 @@
|
|||
}
|
||||
}
|
||||
</style>
|
||||
<div class="app-loading">
|
||||
<!-- <div class="app-loading" hidden>
|
||||
<div class="app-loading-wrap">
|
||||
<!-- <img src="/resource/img/logo.png" class="app-loading-logo" alt="Logo" /> -->
|
||||
<div class="app-loading-dots">
|
||||
<span class="dot dot-spin"><i></i><i></i><i></i><i></i></span>
|
||||
</div>
|
||||
<div class="app-loading-title"><%= title %></div>
|
||||
</div>
|
||||
</div>
|
||||
</div> -->
|
||||
</div>
|
||||
<script type="module" src="/src/main.ts"></script>
|
||||
<!-- <script type="text/javascript" src="/resource/js/webrtc/adapter.min.js"></script>
|
||||
|
|
14
src/main.ts
14
src/main.ts
|
@ -1,9 +1,9 @@
|
|||
import '/@/design/index.less';
|
||||
// 注册 windi
|
||||
import 'virtual:windi-base.css';
|
||||
import 'virtual:windi-components.css';
|
||||
import 'virtual:windi-utilities.css';
|
||||
import 'virtual:windi-devtools';
|
||||
// import 'virtual:windi-components.css';
|
||||
// import 'virtual:windi-utilities.css';
|
||||
// import 'virtual:windi-devtools';
|
||||
// 注册图标
|
||||
import 'virtual:svg-icons-register';
|
||||
import App from './App.vue';
|
||||
|
@ -16,7 +16,7 @@ import { setupStore } from '/@/store';
|
|||
import { setupGlobDirectives } from '/@/directives';
|
||||
import { setupI18n } from '/@/locales/setupI18n';
|
||||
import { registerGlobComp } from '/@/components/registerGlobComp';
|
||||
import { registerThirdComp } from '/@/settings/registerThirdComp';
|
||||
// import { registerThirdComp } from '/@/settings/registerThirdComp';
|
||||
import { useSso } from '/@/hooks/web/useSso';
|
||||
// 注册online模块lib
|
||||
import { registerPackages } from '/@/utils/monorepo/registerPackages';
|
||||
|
@ -43,7 +43,7 @@ async function bootstrap() {
|
|||
initAppConfigStore();
|
||||
|
||||
// 注册外部模块路由(注册online模块lib)
|
||||
registerPackages(app);
|
||||
// registerPackages(app);
|
||||
|
||||
// 注册全局组件
|
||||
registerGlobComp(app);
|
||||
|
@ -61,10 +61,10 @@ async function bootstrap() {
|
|||
setupGlobDirectives(app);
|
||||
|
||||
// 配置全局错误处理
|
||||
setupErrorHandle(app);
|
||||
// setupErrorHandle(app);
|
||||
|
||||
// 注册第三方组件
|
||||
await registerThirdComp(app);
|
||||
// await registerThirdComp(app);
|
||||
|
||||
// 当路由准备好时再执行挂载( https://next.router.vuejs.org/api/#isready)
|
||||
await router.isReady();
|
||||
|
|
Loading…
Reference in New Issue