[Vuejs]-Importing js to Vue project

0👍

No, it won’t. Imports only happen once. The exports that come from each import are effectively singletons. You should be able to verify this by simply adding log messages to the import.

Leave a comment