Export default was not found

后端 未结 3 1096
小鲜肉
小鲜肉 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 05:56

    You have to specify default explicitly:

    export default function translateDate(date) {
       ..
    }
    

提交回复
热议问题