diff options
author | 2023-03-01 23:35:17 +0100 | |
---|---|---|
committer | 2023-03-01 23:35:17 +0100 | |
commit | ad202bd37273e67d98565405486675ca258b4f59 (patch) | |
tree | c877af39bd23200cf7091eed98719f8bffb91c8e /src/App.vue | |
parent | 400654b6b1c8a2f39482f7c60b41ec363d882af2 (diff) | |
download | it-tools-ad202bd37273e67d98565405486675ca258b4f59.tar.gz it-tools-ad202bd37273e67d98565405486675ca258b4f59.tar.zst it-tools-ad202bd37273e67d98565405486675ca258b4f59.zip |
revert(pwa): fallback to autoUpdate
Diffstat (limited to 'src/App.vue')
-rw-r--r-- | src/App.vue | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/App.vue b/src/App.vue index 10a6d0c..98199af 100644 --- a/src/App.vue +++ b/src/App.vue @@ -5,7 +5,6 @@ import { darkTheme, NGlobalStyle, NMessageProvider, NNotificationProvider } from import { darkThemeOverrides, lightThemeOverrides } from './themes'; import { layouts } from './layouts'; import { useStyleStore } from './stores/style.store'; -import ReloadPrompt from './components/ReloadPrompt'; const route = useRoute(); const layout = computed(() => route?.meta?.layout ?? layouts.base); @@ -20,7 +19,6 @@ const themeOverrides = computed(() => (styleStore.isDarkTheme ? darkThemeOverrid <n-global-style /> <n-message-provider placement="bottom"> <n-notification-provider placement="bottom-right"> - <reload-prompt /> <component :is="layout"> <router-view /> </component> |