I looked for how to do it but I did not find an answer to my problem anywhere.
Let me explain, I have my page in which I load a component I created 'date-picker'. I need it in most of the components I will load in the router-view. My problem is that I would, if possible, disable it when I load a specific component in the router-view.
<main>
<date-picker></date-picker>
<router-view></router-view>
</main>
Is there a solution, other than nesting my 'date-picker' component in the components they use? I use Vuex if it helps.
Thanks in advance.