大家这个GitHub项目源码,按章节提交代码:https://github.com/itPoet/imooc-vue-freemall
2019-10-24
最新回答 / 酋长小枪
vue create project 的时候选择 Manually select features 手动选择功能,去掉 Linter/Formatter 就行了
2019-10-23
最赞回答 / ChenforCode
我的是这样,在package.json里边的role项里边加入
"no-console": "off"这样代码里不报错了,但是在后台打包的时候,那个ui页面,还是说这句话有错,所以我就直接用window.console.log()了
2019-10-22
已采纳回答 / 酋长小枪
在 package.json 文件中添加 "rules": { "no-console": "off", "no-debugger": "off" },就可以了
2019-10-20