1. 程式人生 > >前端_VS Code_解決Vue取消eslint語法限制

前端_VS Code_解決Vue取消eslint語法限制

出現問題:
編譯執行一直失敗,提示65個errors,並提示如下:
“You may use special comments to disable some warnings. Use // eslint-disable-next-line to ignore the next line. Use /* eslint-disable */ to ignore all warnings in a file. ”

問題原因:Vue對語法的嚴格限制

解決方法:在build/webpack.base.conf.js檔案中,註釋或者刪除掉:module->rules中有關eslint的規則
在這裡插入圖片描述


重新執行npm run dev即可