I have a HelloWorld.vue in my conponents.
In main.js, import it:
import HelloWorld from './components/HelloWorld.vue'
I see many Vue projects, it is import by this type, there is no .vue suffix:
import HelloWorld from './components/HelloWorld
Is there difference between the two ways to import?