已存在的项目
该方法适合vue cli3及以上版本创建的项目,
可以直接使用vue add命令增加插件,并自动完成配置
运行vue add @vue/eslint
根据提醒输入y
选择标准模式Standard
选择保存时校验Lint on save
这时候会自动生成.eslintrc.js文件
所有的规则都可以在这里面增删
1.查看代理:npm get registry2.设置淘宝镜像
2.1临时使用.
npm --registry https://registry.npm.taobao.org install express
2.2持久使用.
npm config set registry https://registry.npm.taobao.org
2.3验证是否成功
npm config get registry 或 npm info express
2.4.还原:
npm config set registry https://registry.npmjs.org/
1.npm install -g n
2.n stable (最新稳定版本)或者 n latest (最新版本)
1.安装新包:npm install -g @vue/cli
2.查看版本:vue --version 或者 vue -V
3.vue create projectName
4.Check the features needed for your project:
5.Use history mode for router
6.Pick a CSS pre-processor
7.Pick a linter / formatter config
8.Pick additional lint features
9.Pick a unit testing solutio
10.Where do you prefer placing config for Babel, PostCSS, ESLint, etc.?
11.Save this as a preset for future projects
1.安装:npm install vue-i18n 或者 vue add i18n (Vue CLI 3)
2.选择默认环境:The locale of project localization. (en) 输入:zh
3.切换的环境The fallback locale of project localization 输入:en
4.打开项目,在src下新建lang目录
5.选择在src下的一个目录作为存放:The directory where store localization messages of project. It's stored under
src directory. (locales)
输入:lang
6.单引号设置:Enable locale messages in Single file components ? (y/N) 输入:y
7.查看目录lang,生成了zh.json en.json
1.命令安装:npm i --save-dev postcss
2.命令安装:npm isntall postcss-import
3.命令安装:npm i postcss-px-to-viewport
4.命令安装:npm i postcss-aspect-ratio-mini
5.命令安装:npm i postcss-cssnext
6.命令安装:npm i postcss-write-svg
7.命令安装:npm i postcss-viewport-units
8.命令安装:npm i cssnano-preset-advanced --save-dev
9.命令安装:npm install
10.打开项根目录下找到postcss.conf.js
改为:
11.npm run serve
项目打开成功如下图,样式单位由PX换位VM即为成功
使用方式:找到报错文件,右键Fix ESlint Problems即可,
注意:网上有两种方式:一种右键.eslintrc.js文件执行Fix ESlint 或者 Apply ESlint或者eslint --fix后再运行,报错会消失,但是错误并不会改正。
1.1 创建vue项目
1.2 选中自定义配置
1.3 勾选‘Linter / Formatter’
1.4 在选择lint配置时,选择ESLint + Prettier
1.5 之后会让选择在什么时候进行约束,建议全选。
1.6 然后会让你选择在哪进行配置‘ Babel, ESLint’,根据个人喜好,推荐专用配置文件中。
之后静待安装完成即可。
待补充..........
1.1 通过方式一进行安装之后,可在.eslintrc.js进行详细配置。
1.1.1 修改eslint中eslint-plugin-vue的类别。
1.1.2 配置出现警告或错误时,在页面中也能显示。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)