[Vuejs]-Importing a Vue component fails with error "the requested module does not provide an export named 'default'

0👍

The cause of the error message was that this line

import HelloWorld from '../js/Vue/assets/js/helloWorld.js?v=@version';

was expecting a default export, and none was found.
I tried

import { HelloWorld } from '../js/Vue/assets/js/helloWorld.js?v=@version';

but this named export was also not found.

I finally resolved this by publishing the "child" app as a library.
I still don’t know why the original method did not result in any exported module.

Leave a comment