mirror of
https://github.com/janishutz/MusicPlayer.git
synced 2026-09-10 14:25:24 +02:00
15 lines
209 B
TypeScript
15 lines
209 B
TypeScript
import {
|
|
defineStore
|
|
} from 'pinia';
|
|
import {
|
|
ref
|
|
} from 'vue';
|
|
|
|
export const useAuthStore = defineStore( 'authstore', () => {
|
|
const isAuth = ref( false );
|
|
|
|
return {
|
|
isAuth
|
|
};
|
|
} );
|