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:
Jeremy Wharton 2023-07-22 20:47:41 -05:00
parent b16c8ba2e4
commit f30e0986b6

View File

@ -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 {