1. 程式人生 > >vue-cli構建專案報“Unexpected space before function parentheses”錯誤

vue-cli構建專案報“Unexpected space before function parentheses”錯誤

解決方案:

在專案目錄下找到.eslintrc.js檔案,使用編輯器開啟進行編輯。在rules下新增

'space-before-function-paren': [

'error',

{

anonymous: 'always',

named: 'always',

asyncArrow: 'always',

},

]

即可。如圖: