I've recently been experimenting with integrating NUXT and Django on my own, and now I am curious about how to add a button to seamlessly transition to the next video using VUE.
<video id="movieads" class="center" width="640" controls>
<source src="https://cdn.videvo.net/videvo_files/video/free/2013-08/small_watermarked/hd0983_preview.webm" type="video/webm">
</video>
<button v-on:click="">Next Video</button>
For this, I will use the following JavaScript code:
document.getElementById('movieads').src = OTHER_URL;