mirror of
https://github.com/kuaifan/dootask.git
synced 2025-12-12 19:35:50 +00:00
24 lines
485 B
Vue
24 lines
485 B
Vue
<template>
|
|
<div>
|
|
<MeetingManager/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import MeetingManager from "./manage/components/MeetingManager.vue";
|
|
|
|
export default {
|
|
components: {
|
|
MeetingManager,
|
|
},
|
|
mounted() {
|
|
this.$store.dispatch("showMeetingWindow",{
|
|
type: "join",
|
|
meetingid: this.$route.params.meetingId,
|
|
meetingSharekey: this.$route.params.sharekey,
|
|
meetingdisabled: true,
|
|
})
|
|
},
|
|
}
|
|
</script>
|