chore: more preparations

This commit is contained in:
2026-08-21 17:48:39 +02:00
parent 494eef6cd2
commit d03fbe5e66
7 changed files with 87 additions and 62 deletions
+14
View File
@@ -0,0 +1,14 @@
import {
defineStore
} from 'pinia';
import {
ref
} from 'vue';
export const useAuthStore = defineStore( 'authstore', () => {
const isAuth = ref( false );
return {
isAuth
};
} );