How to force update/render a component in Vue3?
<Component
:key="yourVariableThatTrigglesThisComponentToRenderItselfAgain"
/>
Every time, if the key got changed, the Vue component will get re-render again.
<Component
:key="yourVariableThatTrigglesThisComponentToRenderItselfAgain"
/>
Every time, if the key got changed, the Vue component will get re-render again.