mirror of
https://github.com/kuaifan/dootask.git
synced 2025-12-12 19:35:50 +00:00
25 lines
637 B
Vue
25 lines
637 B
Vue
<template>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
mounted() {
|
|
const {meetingId, sharekey} = this.$route.params;
|
|
const {nickname, avatar, audio, video, type} = this.$route.query;
|
|
this.$store.dispatch("showMeetingWindow",{
|
|
type: ['direct', 'join'].includes(type) ? type : 'join',
|
|
meetingid: meetingId,
|
|
meetingSharekey: sharekey,
|
|
meetingNickname: nickname,
|
|
meetingAvatar: avatar,
|
|
meetingAudio: audio,
|
|
meetingVideo: video,
|
|
meetingdisabled: true,
|
|
})
|
|
},
|
|
render() {
|
|
return null
|
|
}
|
|
}
|
|
</script>
|