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>
- [Vuejs]-Vuelidate doesn't show the message on conditional statement
- [Vuejs]-Laravel API routes not working in production but work in dev environment
Source:stackexchange.com