1.問題描述
報錯截圖:
2.解決方案:
- 刪除
node_modules
資料夾:rm -rf node_modules
。 - 刪除
yarn.lock
,yarn-error.log
檔案:rm yarn.lock yarn-error.log
。 - 清除
yarn
快取:yarn cache clean
。 - 設定
yarn
映象,這裡提供多種映象,請選擇任一映象執行命令即可:yarn config set registry https://registry.npm.taobao.org
, - 安裝依賴:
yarn install --no-bin-links
。 - 執行更新,確保
vue
和vue-template-compiler
版本完全相同:npm update vue
。 - 最後執行編譯命令:
npm run watch-poll
或者npm run dev
。
剛剛接觸
Markdown
不久,也是第一次寫文章,排版不好大家勿怪。
在網上搜尋了幾天時間,沒有找到合適的解決方案,所以才決定記錄下來,以防之後的課程繼續碰到類似問題。