You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So, I have this code, <vue-plyr v-if="devotionalVideoSrc && globalVideoState === VideoPlayerState.playing"> <video controls> <source size="1080" :src="devotionalVideoSrc" type="video/mp4" /> </video> </vue-plyr>
And I have a button that toggles the globalVideoState. When I click, and the globalVideoState is changed to VideoPlayerState.playing, it loads like it should. However, when I click it again two more times (so I toggle it to open again) it doesn't show. Idk what is going on.
The text was updated successfully, but these errors were encountered:
So, I have this code,
<vue-plyr v-if="devotionalVideoSrc && globalVideoState === VideoPlayerState.playing"> <video controls> <source size="1080" :src="devotionalVideoSrc" type="video/mp4" /> </video> </vue-plyr>
And I have a button that toggles the
globalVideoState
. When I click, and theglobalVideoState
is changed toVideoPlayerState.playing
, it loads like it should. However, when I click it again two more times (so I toggle it to open again) it doesn't show. Idk what is going on.The text was updated successfully, but these errors were encountered: