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