Can a specific component be reloaded in a Vue component that contains multiple components?
For example, if there is a component structured like this:
Main component
<template>
<button>Button<button>
<component1></component>
<component2></component2>
</template>
Is it feasible to reload only component 1 when button 1 is clicked? If so, how would I go about reloading that particular component?
Many thanks!