You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unable to use export in a index.js file when for example.
Here I have a index.js that exports the Bar component in say main.js I can not import bar from /bar. ie: import {Bar} from './components/bar'
/* in ./src/components/bar/index.js */exportBarfrom'./Bar.vue'/* in ./src/components/bar/Bar.vue */<template><div>Hi</div></template>
exportdefault{}<style></style>
I get this error?
ERROR in ./src/components/bar/index.js
Module build failed: SyntaxError: Unexpected token, expected { (1:7)
> 1 |export Bar from './Bar'| ^
The text was updated successfully, but these errors were encountered:
Unable to use
export
in a index.js file when for example.Here I have a index.js that exports the Bar component in say main.js I can not import bar from /bar. ie:
import {Bar} from './components/bar'
I get this error?
The text was updated successfully, but these errors were encountered: