[Vuejs]-Vue and videojs: how reload video

0👍

Let’s call your component videoComponent

<VideoComponent></VideoComponent>

You can add key attribute to your component.

Thanks to that it will be re-rendered when key is changed

<VideoComponent :key="someUniqueParamId"></VideoComponent>

Leave a comment