This dependency was not found: * @/components/Money/FormItem.vue in ./node_modules/cache-loader/dist/ cjs.js??ref--13-0!./node_modules/babel-loader/lib!./node_modules/ts-lo ader??ref--13-2!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./no de_modules/vue-loader/lib??vue-loader-options!./src/views/Money.vue?vu e&type=script&lang=ts& To install it, you can run: npm install --save @/components/Money/Form Item.vue
這個(gè)錯(cuò)誤的原因是因?yàn)?/p>

路徑不對(duì).jpg
解決方案:在其他 vue 文件引入的時(shí)候,路徑寫(xiě)錯(cuò).
import FormItemfrom './components/Money/FormItem.vue';
import FormItemfrom '@/components/Money/FormItem.vue';
方案一:少寫(xiě)了一個(gè) ".", 應(yīng)該是點(diǎn)點(diǎn)
方案二:改成用 @

結(jié)果1.jpg

結(jié)果2.jpg
問(wèn)題解決