nuxt-start/stores/auth.ts
2025-01-01 11:15:54 +01:00

8 lines
147 B
TypeScript

import { defineStore } from 'pinia'
export const useAuthStore = defineStore({
id: 'AuthStore',
state: () => ({ user:null }),
actions: {}
})