[Vuejs]-Vuejs suggest to use const and let. But both are not working

1👍

From what I understand you are trying to reuse a variable by importing it into multiple vue components. This is not the use that should be made of js modules. I suggest you look at this library through which you can share the status between multiple components in a very simple way:

https://pinia.vuejs.org/

Leave a comment