这是我的 html 文件
<div id="remote-video-frame">
<div class="mutedVideo" v-if="remotemutedVideo">{{user}}</div>
<div id="remote-video" class="remote-video" v-if="!remotemutedVideo" v-if="remoteJoined" ></div>
<div class="content-center waitremote" v-else>
<div class="pulse"> <i class="fas fa-phone fa-2x"></i> </div>
<p>Waiting {{singleUser}} to response to this video call now.</p>
</div>
</div>
js文件
handleVideoToggle() {
if (this.mutedVideo) {
this.localStream.unmuteVideo();
this.mutedVideo = false;
} else {
this.localStream.muteVideo();
this.mutedVideo = true;
}
我在我的 js 文件中声明了remotemutedVideo并尝试在handleVideoToggle中声明它的状态,但它仍然无法正常工作,我怎么能从那里的远程获取静音状态并向本地显示远程用户将他们的视频静音而不是仅仅得到一个黑色屏幕