2020-01-26
一、错误代码 404 not found
- 错误信息:
This dependency was not found: @/components/HelloWorld in ./src/router/index.js
- 错误分析: 在 ./src/router/index.js中有一个叫HelloWorld的依赖组件没有被找到
- 错误原因:在使用 vue init webpack中配置了router,其默认将components中的HelloWorld.vue组件引入,但由于我将其删去所以找不到该依赖组件
- 解决方案: 在 router/index.js中将有关HelloWorld组件有关内容也一并删去即可
2020-01-27
一、ESLint警示:Expected indentation of 0 spaces but found 2
- 警示分析:ESLint的验证规则不一致,但很多时候我们并不需要关于空格和缩进的验证
- 解决方案:在.eslintrc.js文件中的rules内添加以下代码,再重新
npm start
(npm run dev
)即可:
'no-tabs': 0,
'no-mixed-spaces-and-tabs': 0,
'indent': ["off", "tab"],
'no-trailing-spaces': 0,