Browse Source

string userid

master
zhangtao 1 year ago
parent
commit
fd4cc250f9
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      .env
  2. +1
    -1
      src/views/home/index.vue

+ 1
- 1
.env View File

# title # title
VITE_APP_TITLE = 'h5'
VITE_APP_TITLE = '视频会议'


# 端口号 # 端口号
VITE_PORT = 3000 VITE_PORT = 3000

+ 1
- 1
src/views/home/index.vue View File



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()
}) })

Loading…
Cancel
Save