In my project, I have two components - 'ProductGrid.Vue' and 'LoadItem.vue' (which functions as a side-loader menu).
Currently, both components have a Prop named show. However, once the LoadItem menu is closed, I am unable to trigger show = true again.
You can test this behavior Here
ProductGrid.Vue
<!-- Code for ProductGrid.Vue component -->
LoadItem.vue
<!-- Code for LoadItem.vue component -->
I am facing an issue where after closing the LoadItem component, I cannot reopen it in the ProductGrid component. Any assistance or guidance on this issue would be greatly appreciated.
As I am still learning Vue/Nuxt, any help will be valuable. Thank you!