stream day 2

This commit is contained in:
Zoe
2023-01-03 15:11:36 -06:00
parent 0bece5d0fc
commit 47afcbb8ec
23 changed files with 605 additions and 37 deletions

10
stores/user.ts Normal file
View File

@@ -0,0 +1,10 @@
export const useUserStore = defineStore('user', {
state: () => ({
user: {}
}),
actions: {
setUser(user) {
this.user = user;
}
},
})