fix(lock): automatic screen lock does not work

This commit is contained in:
vben
2021-05-25 22:35:32 +08:00
parent 785732f438
commit d5b768929e
6 changed files with 92 additions and 93 deletions

View File

@@ -26,7 +26,7 @@ if (import.meta.env.DEV) {
(async () => {
const app = createApp(App);
// Configure vuex store
// Configure store
setupStore(app);
// Initialize internal system configuration
@@ -55,8 +55,4 @@ if (import.meta.env.DEV) {
await router.isReady();
app.mount('#app', true);
if (import.meta.env.DEV) {
window.__APP__ = app;
}
})();