feat:更新协同合作

This commit is contained in:
leilei
2025-09-30 17:58:34 +08:00
parent af994f88de
commit 3ac556d7a5
12 changed files with 2178 additions and 621 deletions

View File

@@ -0,0 +1,19 @@
import { defineStore } from 'pinia'
export const useRoomStore = defineStore('room', {
state: () => ({
roomId: '',
token: '',
userUid: '',
detailUid: '',
}),
actions: {
setUserUid(data) {
this.userUid = data
},
setDetailUid(data) {
this.detailUid = data
}
}
})