web/satellite/vuetify-poc: fix app store name conflict
The name of the Vuetify Pinia app store has been renamed so that it does not conflict with the regular app store. Previously, whichever store was created first would override the other due to them having identical names. Change-Id: I11cb3b70b7385320accd30644cb3ad6cfad7d00e
This commit is contained in:
parent
b16c8ba2e4
commit
f30e0986b6
@ -8,7 +8,7 @@ class AppState {
|
||||
public isNavigationDrawerShown = true;
|
||||
}
|
||||
|
||||
export const useAppStore = defineStore('app', () => {
|
||||
export const useAppStore = defineStore('vuetifyApp', () => {
|
||||
const state = reactive<AppState>(new AppState());
|
||||
|
||||
function toggleNavigationDrawer(): void {
|
||||
|
Loading…
Reference in New Issue
Block a user