string userid

This commit is contained in:
zhangtao 2022-10-24 09:14:55 +08:00
parent 26ccf348e5
commit fd4cc250f9
2 changed files with 2 additions and 2 deletions

2
.env
View File

@ -1,5 +1,5 @@
# title # title
VITE_APP_TITLE = 'h5' VITE_APP_TITLE = '视频会议'
# 端口号 # 端口号
VITE_PORT = 3000 VITE_PORT = 3000

View File

@ -516,7 +516,7 @@ export default {
onMounted(async() => { onMounted(async() => {
const { userId, roomId } = route.query const { userId, roomId } = route.query
data.userId = userId data.userId = String(userId)
data.roomId = Number(roomId) data.roomId = Number(roomId)
await handleSig() await handleSig()
}) })