Export default was not found

后端 未结 3 1099
小鲜肉
小鲜肉 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:14

    You need to set symlink setting in vue.config.js

    config.resolve.symlinks(false);
    

提交回复
热议问题