Files
MusicPlayer/web/src/stores/authstore.ts
T
2026-09-08 09:52:40 +02:00

15 lines
209 B
TypeScript

import {
defineStore
} from 'pinia';
import {
ref
} from 'vue';
export const useAuthStore = defineStore( 'authstore', () => {
const isAuth = ref( false );
return {
isAuth
};
} );