error: Unexpected console statement (no-console)

使用console.log 报错??这个错误是Vuejs - 使用ESLint检查代码而产生的

 

解决办法:

1.不处理,虽然有恼人的提示,但是实际上能使用console.log的

 

2.关掉ESLint检查(不建议)

 

3.修改ESLint的检查规则,使之放过console

error: Unexpected console statement (no-console)

改成”no-console“:”off“ 关闭这个检查

 

上一篇:create-react-app 报错 Unexpected end of JSON input while parsing near '


下一篇:Uncaught SyntaxError: Unexpected identifier 报错 import Vue from 'vue';