Weex project bug record: Module not found: Error: Can't resolve '

weex project bug record

Problem: Weex project, when importing custom components, an error is reported: Module not found: Error: Can't resolve'../components/LVCustomPrompt'  

solve:

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

To

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

 

The reason is that it was introduced using the webstorm prompt, but this detail was not found

Guess you like

Origin blog.csdn.net/jiushi1995/article/details/112612365