diff --git a/frontend/src/pages/install/index.vue b/frontend/src/pages/install/index.vue index 6960219..530a1bb 100644 --- a/frontend/src/pages/install/index.vue +++ b/frontend/src/pages/install/index.vue @@ -42,7 +42,7 @@ async function checkInstallStatus() { const data = await res.json() installStatus.value = data?.data if (data?.data?.installed) { - router.push('/login') + window.location.href = '/login' } } catch (error) { @@ -162,7 +162,7 @@ function goNext() { } function goLogin() { - router.push('/login') + window.location.href = '/login' } onMounted(() => {