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

15
stores/servers.ts Normal file
View File

@@ -0,0 +1,15 @@
export const useServerStore = defineStore('server', {
state: () => ({
servers: [],
dms: [],
activeServer: undefined
}),
actions: {
addServer(server) {
this.servers.push(server)
},
addDM(server) {
this.dms.push(server)
}
},
})