UNPKG

@geode/vease

Version:

Desktop and cloud software for data visualization

24 lines (20 loc) 400 B
export const useUserStore = defineStore('user', () => { const firstName = ref('') const lastName = ref('') const email = ref('') const password = ref('') const image = ref('') const fetchUserData = async () => { } const updateProfile = async () => { } return { firstName, lastName, email, password, image, fetchUserData, updateProfile } })