- 国内github不稳定处理办法 测试采用配置 C:\Windows\System32\drivers\etc\hosts 域名和ip映射可行。
- package.json scripts 标签定义了 npm 、yarn可以执行的命令
- pakcage-lock.json 存储了npm install时框架依赖情况;yarn-lock.json 存储了 yarn install时框架依赖情况
-
npm i --legacy-peer-deps
// 使用 npm i --legacy-peer-deps 命令安装依赖时,会忽略 peer dependencies 的版本冲突问题。 - vue2 devtool chrome 插件下载
- eslint 报错
根路径下创建.eslintrc.js文件,其内容如下:
module.exports = {
'parser': '@babel/eslint-parser', //支持ES6语法
rules: {
"*": "off"
},
};
/vue.config.js 添加 lintOnSave:false
const {defineConfig} = require('@vue/cli-service')
module.exports = defineConfig({
transpileDependencies: true,
lintOnSave: false,
})
- 视频推荐 - 30分钟学会Vue之VueRouter&Vuex