diff options
author | Remy Raes <raes.remy@gmail.com> | 2022-10-20 02:19:26 +0200 |
---|---|---|
committer | Remy Raes <raes.remy@gmail.com> | 2022-10-20 02:19:26 +0200 |
commit | a0cb231ddbdd7fdced9e7cda771dff7d0833c826 (patch) | |
tree | 1e8a583241d319c0f683ea84f2d7ac8abaa54e2a /src-vue | |
parent | a336c03cc80f2e2848de32aa8fb979abc9538993 (diff) | |
download | FlightCore-a0cb231ddbdd7fdced9e7cda771dff7d0833c826.tar.gz FlightCore-a0cb231ddbdd7fdced9e7cda771dff7d0833c826.zip |
fix: restore updateCurrentTab method with router
Diffstat (limited to 'src-vue')
-rw-r--r-- | src-vue/src/main.ts | 2 | ||||
-rw-r--r-- | src-vue/src/plugins/store.ts | 2 | ||||
-rw-r--r-- | src-vue/src/utils/Tabs.ts | 8 |
3 files changed, 7 insertions, 5 deletions
diff --git a/src-vue/src/main.ts b/src-vue/src/main.ts index cd1936b2..dc18b443 100644 --- a/src-vue/src/main.ts +++ b/src-vue/src/main.ts @@ -35,7 +35,7 @@ const routes = [ { path: '/settings', name: 'Settings', component: async () => SettingsView}, { path: '/dev', name: 'Dev', component: async () => DeveloperView} ]; -const router = createRouter({ +export const router = createRouter({ history: createWebHashHistory(), routes, // short for `routes: routes` }); diff --git a/src-vue/src/plugins/store.ts b/src-vue/src/plugins/store.ts index 647ee4e9..a977b38b 100644 --- a/src-vue/src/plugins/store.ts +++ b/src-vue/src/plugins/store.ts @@ -8,6 +8,7 @@ import { ReleaseCanal } from "../utils/ReleaseCanal"; import { ElNotification } from 'element-plus'; import { NorthstarState } from '../utils/NorthstarState'; import { Store } from 'tauri-plugin-store-api'; +import {router} from "../main"; const persistentStore = new Store('flight-core-settings.json'); @@ -65,6 +66,7 @@ export const store = createStore<FlightCoreStore>({ }, updateCurrentTab(state: any, newTab: Tabs) { state.current_tab = newTab; + router.push({path: newTab}); }, async launchGame(state: any) { // TODO update installation if release track was switched diff --git a/src-vue/src/utils/Tabs.ts b/src-vue/src/utils/Tabs.ts index 5266da81..48320950 100644 --- a/src-vue/src/utils/Tabs.ts +++ b/src-vue/src/utils/Tabs.ts @@ -1,6 +1,6 @@ export enum Tabs { - PLAY = 'Play', - CHANGELOG = 'Changelog', - SETTINGS = 'Settings', - DEV = 'Dev' + PLAY = '/', + CHANGELOG = '/changelog', + SETTINGS = '/settings', + DEV = '/dev' } |