8 lines
147 B
TypeScript
8 lines
147 B
TypeScript
import { defineStore } from 'pinia'
|
|
|
|
export const useAuthStore = defineStore({
|
|
id: 'AuthStore',
|
|
state: () => ({ user:null }),
|
|
actions: {}
|
|
})
|