weex项目bug记录: Module not found: Error: Can‘t resolve ‘

weex项目bug记录

问题:weex项目,引入自定义组件时,报错:Module not found: Error: Can't resolve '../components/LVCustomPrompt'  

解决:

import LvPrompt from '../components/LVCustomPrompt';  

改为

import LvPrompt from '../components/LVCustomPrompt.vue';

原因是使用webstorm提示引入,没有发现这个细节

猜你喜欢

转载自blog.csdn.net/jiushi1995/article/details/112612365