|
@@ -1,15 +1,20 @@
|
|
|
<template>
|
|
|
<div class="appcon">
|
|
|
<iframe :src="`scene.html${params}`" frameborder="0"></iframe>
|
|
|
- <Trtccom/>
|
|
|
+ <Trtccom :audioMuted="audioMuted" :videoMuted="videoMuted" />
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script setup>
|
|
|
import { ref } from "vue";
|
|
|
import Trtccom from "@/components/RTC/Trtccom.vue";
|
|
|
+import Control from "@/components/Controls/Control.Mobile.vue";
|
|
|
|
|
|
const params = ref(location.search);
|
|
|
+const audioMuted = ref(false);
|
|
|
+const videoMuted = ref(false);
|
|
|
+
|
|
|
+
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|