error in ./src/components/form/Editor.vue Module build failed: Error:Vue packages version mismatch

瀟歌漓發表於2020-11-18

1.錯誤:

error  in ./src/components/form/Editor.vue

Module build failed: Error:

Vue packages version mismatch:

- vue@2.6.12
- vue-template-compiler@2.5.16

This may cause things to work incorrectly. Make sure to use the same version f
or both.
If you are using vue-loader@>=10.0, simply update vue-template-compiler.
If you are using vue-loader@<10.0 or vueify, re-installing vue-loader/vueify s
hould bump vue-template-compiler to the latest.
 

翻譯錯誤資訊:【Vue packages version mismatch:Vue軟體包版本不匹配】 。

這錯誤是你當前安裝的VUE依賴node_modules是2.6.12版本的,但匯入的專案中用的是2.5.16版本的。

就是說你安裝的node_modules需要和vue-template-compiler對應的版本才可以使專案執行成功!

2.解決:

1.直接在專案中刪除之前的node_modules,

2.然後安裝2.5.16版本的vue依賴:npm install vue@2.5.16 --save

3.執行專案:npm run dev

------------------------------------------------------------------------------------------------------------------

OK,這樣就成功了!

 

 

相關文章