vue-cli构建项目报“Unexpected space before function parentheses”错误

解决方案:

在项目目录下找到.eslintrc.js文件,使用编辑器打开进行编辑。在rules下添加

'space-before-function-paren': [

'error',

{

anonymous: 'always',

named: 'always',

asyncArrow: 'always',

},

]

即可。如图:

vue-cli构建项目报“Unexpected space before function parentheses”错误