Export default was not found

后端 未结 3 1109
小鲜肉
小鲜肉 2021-02-02 05:30

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:

3条回答
  •  暖寄归人
    2021-02-02 06:12

    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"
    

提交回复
热议问题