1
0
mirror of https://github.com/0O0o0oOoO00/Alas.git synced 2026-05-14 13:09:25 +08:00

Fix: Typo of /launch

This commit is contained in:
LmeSzinc
2023-09-09 03:55:47 +08:00
parent 151e26d0c0
commit ed8ec0abc4
3 changed files with 3 additions and 3 deletions

View File

@@ -4,7 +4,7 @@ import Alas from '/@/components/Alas.vue';
const routes = [
{path: '/', name: 'Loading', component: () => import('./views/LoadingPage.vue')},
{path: '/Install', name: 'InstallPage', component: () => import('./views/InstallAlas.vue')},
{path: '/Lunch', name: 'LunchPage', component: () => import('./views/Launch.vue')},
{path: '/Launch', name: 'LaunchPage', component: () => import('./views/Launch.vue')},
{path: '/Import', name: 'ImportConfig', component: () => import('./views/ImportConfig.vue')},
{path: '/Alas', name: 'Alas', component: Alas},
];

View File

@@ -146,7 +146,7 @@ const installAlas = async () => {
const filePath = unref(appStore.alasPath);
window.__electron_preload__modifyConfigYaml(filePath, modifyConfig);
installLoading.value = false;
router.push('/Lunch');
router.push('/Launch');
};
</script>

View File

@@ -16,7 +16,7 @@ onMounted(() => {
if (!isFirst) {
router.push('/Install');
} else {
router.push('/Lunch');
router.push('/Launch');
}
});
</script>