I have a Vue 2 project, and I\'ve written a simple function for translating months in dates, which I would like to import in one of my components, but I\'m getting an error:
You have to specify default
explicitly:
export default function translateDate(date) {
..
}
Either specify default
as mentioned above, or if you're trying to export multiple items from the same file you need to import them with curly brackets.
So you would have:
export function doWork(){}
export const myVariable = true;
And then you'd import them in a separate file as:
import { doWork, myVariable} from "./myES6Module"
You need to set symlink setting in vue.config.js
config.resolve.symlinks(false);