npm run dev 启动的时候报错:

vue启动报错These dependencies were not found:

 

 

上面写着出现问题的文件在 ./src/router/index.js; 查找后发现是

import Content from '@page/content'

 

这代码不对,page前面需要加 "/",正确代码是

import Content from '@/page/content'

重新执行代码发现还是出错

vue启动报错These dependencies were not found:

 

vue启动报错These dependencies were not found:

 

 


相关文章: