学习:掘金程序媛花花-开箱即用 vue-cli4 vant rem 移动端框架方案

vue-h5-template

基于 vue-cli4.0 + webpack 4 + vant ui + sass+ rem 适配方案+axios 封装,构建手机端模板脚手架
掘金: vue-cli4 vant rem 移动端框架方案
查看 demo 建议手机端查看

Node 版本要求

Vue CLI 需要 Node.js 8.9 或更高版本 (推荐 8.11.0+)。你可以使用 nvmnvm-windows 在同一台电脑中管理多个 Node 版本。
本示例 Node.js 12.14.1

启动项目

  1. git clone https://github.com/sunniejs/vue-h5-template.git
  2. cd vue-h5-template
  3. npm install
  4. npm run serve

目录

  • √ Vue-cli4
  • √ 配置多环境变量
  • √ rem 适配方案
  • √ VantUI 组件按需加载
  • √ Sass 全局样式
  • √ Vuex 状态管理
  • √ Vue-router
  • √ Axios 封装及接口管理
  • √ Webpack 4 vue.config.js 基础配置
  • √ 配置 alias 别名
  • √ 配置 proxy 跨域
  • √ 配置 打包分析
  • √ 配置 externals 引入 cdn 资源
  • √ 去掉 console.log
  • √ splitChunks 单独打包第三方模块
  • √ 添加 IE 兼容
  • √ Eslint+Pettier 统一开发规范

    ✅ 配置多环境变量

    package.json 里的 scripts 配置 serve stage build,通过 --mode xxx 来执行不同环境

  • 通过 npm run serve 启动本地 , 执行 development

  • 通过 npm run stage 打包测试 , 执行 staging
  • 通过 npm run build 打包正式 , 执行 production

    1. "scripts": {
    2. "serve": "vue-cli-service serve --open",
    3. "stage": "vue-cli-service build --mode staging",
    4. "build": "vue-cli-service build",
    5. }

    配置介绍

      以 VUE_APP_ 开头的变量,在代码中可以通过 process.env.VUE_APP_ 访问。
      比如,VUE_APP_ENV = 'development' 通过process.env.VUE_APP_ENV 访问。
      除了 VUE_APP_* 变量之外,在你的应用代码中始终可用的还有两个特殊的变量NODE_ENVBASE_URL
    在项目根目录中新建.env.*

  • .env.development 本地开发环境配置

    1. NODE_ENV='development'
    2. # must start with VUE_APP_
    3. VUE_APP_ENV = 'development'
  • .env.staging 测试环境配置

    1. NODE_ENV='production'
    2. # must start with VUE_APP_
    3. VUE_APP_ENV = 'staging'
  • .env.production 正式环境配置

    1. NODE_ENV='production'
    2. # must start with VUE_APP_
    3. VUE_APP_ENV = 'production'

    这里我们并没有定义很多变量,只定义了基础的 VUE_APP_ENV development staging``production
    变量我们统一在 src/config/env.*.js 里进行管理。
    这里有个问题,既然这里有了根据不同环境设置变量的文件,为什么还要去 config 下新建三个对应的文件呢?
    修改起来方便,不需要重启项目,符合开发习惯。
    config/index.js

    1. // 根据环境引入不同配置 process.env.NODE_ENV
    2. const config = require('./env.' + process.env.VUE_APP_ENV)
    3. module.exports = config

    配置对应环境的变量,拿本地环境文件 env.development.js 举例,用户可以根据需求修改

    1. // 本地环境配置
    2. module.exports = {
    3. title: 'vue-h5-template',
    4. baseUrl: 'http://localhost:9018', // 项目地址
    5. baseApi: 'https://test.xxx.com/api', // 本地api请求地址
    6. APPID: 'xxx',
    7. APPSECRET: 'xxx'
    8. }

    根据环境不同,变量就会不同了

    1. // 根据环境不同引入不同baseApi地址
    2. import {baseApi} from '@/config'
    3. console.log(baseApi)

    ▲ 回顶部

    ✅ rem 适配方案

    不用担心,项目已经配置好了 rem 适配, 下面仅做介绍:
    Vant 中的样式默认使用px作为单位,如果需要使用rem单位,推荐使用以下两个工具:

  • postcss-pxtorem 是一款 postcss 插件,用于将单位转化为 rem

  • lib-flexible 用于设置 rem 基准值

    PostCSS 配置

    下面提供了一份基本的 postcss 配置,可以在此配置的基础上根据项目需求进行修改

    1. // https://github.com/michael-ciniawsky/postcss-load-config
    2. module.exports = {
    3. plugins: {
    4. autoprefixer: {
    5. overrideBrowserslist: ['Android 4.1', 'iOS 7.1', 'Chrome > 31', 'ff > 31', 'ie >= 8']
    6. },
    7. 'postcss-pxtorem': {
    8. rootValue: 37.5,
    9. propList: ['*']
    10. }
    11. }
    12. }

    更多详细信息: vant
    新手必看,老鸟跳过
    很多小伙伴会问我,适配的问题。
    我们知道 1rem 等于html 根元素设定的 font-sizepx 值。Vant UI 设置 rootValue: 37.5,你可以看到在 iPhone 6 下 看到 (1rem 等于 37.5px):

    1. <html data-dpr="1" style="font-size: 37.5px;"></html>

    切换不同的机型,根元素可能会有不同的font-size。当你写 css px 样式时,会被程序换算成 rem 达到适配。
    因为我们用了 Vant 的组件,需要按照 rootValue: 37.5 来写样式。
    举个例子:设计给了你一张 750px * 1334px 图片,在 iPhone6 上铺满屏幕,其他机型适配。

  • rootValue: 70 , 样式 width: 750px;height: 1334px; 图片会撑满 iPhone6 屏幕,这个时候切换其他机型,图片也会跟着撑 满。

  • rootValue: 37.5 的时候,样式 width: 375px;height: 667px; 图片会撑满 iPhone6 屏幕。

也就是 iphone 6 下 375px 宽度写 CSS。其他的你就可以根据你设计图,去写对应的样式就可以了。
当然,想要撑满屏幕你可以使用 100%,这里只是举例说明。

  1. <img class="image" src="https://imgs.solui.cn/weapp/logo.png" />
  2. <style>
  3. /* rootValue: 75 */
  4. .image {
  5. width: 750px;
  6. height: 1334px;
  7. }
  8. /* rootValue: 37.5 */
  9. .image {
  10. width: 375px;
  11. height: 667px;
  12. }
  13. </style>

▲ 回顶部

✅ VantUI 组件按需加载

项目采 用Vant 自动按需引入组件 (推荐)下 面安装插件介绍:
babel-plugin-import 是一款 babel 插件,它会在编译过程中将 import 的写法自动转换为按需引入的方式

安装插件

  1. npm i babel-plugin-import -D

babel.config.js 设置

  1. // 对于使用 babel7 的用户,可以在 babel.config.js 中配置
  2. const plugins = [
  3. [
  4. 'import',
  5. {
  6. libraryName: 'vant',
  7. libraryDirectory: 'es',
  8. style: true
  9. },
  10. 'vant'
  11. ]
  12. ]
  13. module.exports = {
  14. presets: [['@vue/cli-plugin-babel/preset', {useBuiltIns: 'usage', corejs: 3}]],
  15. plugins
  16. }

使用组件

项目在 src/plugins/vant.js 下统一管理组件,用哪个引入哪个,无需在页面里重复引用

  1. // 按需全局引入 vant组件
  2. import Vue from 'vue'
  3. import {Button, List, Cell, Tabbar, TabbarItem} from 'vant'
  4. Vue.use(Button)
  5. Vue.use(Cell)
  6. Vue.use(List)
  7. Vue.use(Tabbar).use(TabbarItem)

▲ 回顶部

✅ Sass 全局样式

首先 你可能会遇到 node-sass 安装不成功,别放弃多试几次!!!
目录结构,在 src/assets/css/文件夹下包含了三个文件

  1. ├── assets
  2. ├── css
  3. ├── index.scss # 全局通用样式
  4. ├── mixin.scss # 全局mixin
  5. └── variables.scss # 全局变量

每个页面自己对应的样式都写在自己的 .vue 文件之中

  1. <style lang="scss">
  2. /* global styles */
  3. </style>
  4. <style lang="scss" scoped>
  5. /* local styles */
  6. </style>

vue.config.js 配置注入 sassmixin variables 到全局,不需要手动引入 ,配置$cdn通过变量形式引入 cdn 地址

  1. const IS_PROD = ['production', 'prod'].includes(process.env.NODE_ENV)
  2. const defaultSettings = require('./src/config/index.js')
  3. module.exports = {
  4. css: {
  5. extract: IS_PROD,
  6. sourceMap: false,
  7. loaderOptions: {
  8. scss: {
  9. // 注入 `sass` 的 `mixin` `variables` 到全局, $cdn可以配置图片cdn
  10. // 详情: https://cli.vuejs.org/guide/css.html#passing-options-to-pre-processor-loaders
  11. prependData: `
  12. @import "assets/css/mixin.scss";
  13. @import "assets/css/variables.scss";
  14. $cdn: "${defaultSettings.$cdn}";
  15. `
  16. }
  17. }
  18. }
  19. }

main.js 中引用全局样式(发现在上面的,prependData 里设置@import "assets/css/index.scss";并没有应用全局样式这里在 main.js 引入)
设置 js 中可以访问 $cdn,.vue 文件中使用this.$cdn访问

  1. // 引入全局样式
  2. import '@/assets/css/index.scss'
  3. // 设置 js中可以访问 $cdn
  4. // 引入cdn
  5. import {$cdn} from '@/config'
  6. Vue.prototype.$cdn = $cdn

在 css 和 js 使用

  1. <script>
  2. console.log(this.$cdn)
  3. </script>
  4. <style lang="scss" scoped>
  5. .logo {
  6. width: 120px;
  7. height: 120px;
  8. background: url($cdn + '/weapp/logo.png') center / contain no-repeat;
  9. }
  10. </style>

▲ 回顶部

✅ Vuex 状态管理

目录结构

  1. ├── store
  2. ├── modules
  3. └── app.js
  4. ├── index.js
  5. ├── getters.js

main.js 引入

  1. import Vue from 'vue'
  2. import App from './App.vue'
  3. import store from './store'
  4. new Vue({
  5. el: '#app',
  6. router,
  7. store,
  8. render: h => h(App)
  9. })

使用

  1. <script>
  2. import {mapGetters} from 'vuex'
  3. export default {
  4. computed: {
  5. ...mapGetters(['userName'])
  6. },
  7. methods: {
  8. // Action 通过 store.dispatch 方法触发
  9. doDispatch() {
  10. this.$store.dispatch('setUserName', '真乖,赶紧关注公众号,组织都在等你~')
  11. }
  12. }
  13. }
  14. </script>

▲ 回顶部

✅ Vue-router

本案例采用 hash 模式,开发者根据需求修改 mode base
注意:如果你使用了 history 模式,vue.config.js 中的 publicPath 要做对应的修改
前往:vue.config.js 基础配置

  1. import Vue from 'vue'
  2. import Router from 'vue-router'
  3. Vue.use(Router)
  4. export const router = [
  5. {
  6. path: '/',
  7. name: 'index',
  8. component: () => import('@/views/home/index'), // 路由懒加载
  9. meta: {
  10. title: '首页', // 页面标题
  11. keepAlive: false // keep-alive 标识
  12. }
  13. }
  14. ]
  15. const createRouter = () =>
  16. new Router({
  17. // mode: 'history', // 如果你是 history模式 需要配置 vue.config.js publicPath
  18. // base: '/app/',
  19. scrollBehavior: () => ({y: 0}),
  20. routes: router
  21. })
  22. export default createRouter()

更多:Vue Router
▲ 回顶部

✅ Axios 封装及接口管理

utils/request.js 封装 axios ,开发者需要根据后台接口做修改。

  • service.interceptors.request.use 里可以设置请求头,比如设置 token
  • config.hideloading 是在 api 文件夹下的接口参数里设置,下文会讲
  • service.interceptors.response.use 里可以对接口返回数据处理,比如 401 删除本地信息,重新登录

    1. import axios from 'axios'
    2. import store from '@/store'
    3. import {Toast} from 'vant'
    4. // 根据环境不同引入不同api地址
    5. import {baseApi} from '@/config'
    6. // create an axios instance
    7. const service = axios.create({
    8. baseURL: baseApi, // url = base api url + request url
    9. withCredentials: true, // send cookies when cross-domain requests
    10. timeout: 5000 // request timeout
    11. })
    12. // request 拦截器 request interceptor
    13. service.interceptors.request.use(
    14. config => {
    15. // 不传递默认开启loading
    16. if (!config.hideloading) {
    17. // loading
    18. Toast.loading({
    19. forbidClick: true
    20. })
    21. }
    22. if (store.getters.token) {
    23. config.headers['X-Token'] = ''
    24. }
    25. return config
    26. },
    27. error => {
    28. // do something with request error
    29. console.log(error) // for debug
    30. return Promise.reject(error)
    31. }
    32. )
    33. // respone拦截器
    34. service.interceptors.response.use(
    35. response => {
    36. Toast.clear()
    37. const res = response.data
    38. if (res.status && res.status !== 200) {
    39. // 登录超时,重新登录
    40. if (res.status === 401) {
    41. store.dispatch('FedLogOut').then(() => {
    42. location.reload()
    43. })
    44. }
    45. return Promise.reject(res || 'error')
    46. } else {
    47. return Promise.resolve(res)
    48. }
    49. },
    50. error => {
    51. Toast.clear()
    52. console.log('err' + error) // for debug
    53. return Promise.reject(error)
    54. }
    55. )
    56. export default service

    接口管理

    src/api 文件夹下统一管理接口

  • 你可以建立多个模块对接接口, 比如 home.js 里是首页的接口这里讲解 user.js

  • url 接口地址,请求的时候会拼接上 config 下的 baseApi
  • method 请求方法
  • data 请求参数 qs.stringify(params) 是对数据系列化操作
  • hideloading 默认 false,设置为 true 后,不显示 loading ui 交互中有些接口不需要让用户感知
    1. import qs from 'qs'
    2. // axios
    3. import request from '@/utils/request'
    4. //user api
    5. // 用户信息
    6. export function getUserInfo(params) {
    7. return request({
    8. url: '/user/userinfo',
    9. method: 'post',
    10. data: qs.stringify(params),
    11. hideloading: true // 隐藏 loading 组件
    12. })
    13. }

    如何调用

    1. // 请求接口
    2. import {getUserInfo} from '@/api/user.js'
    3. const params = {user: 'sunnie'}
    4. getUserInfo(params)
    5. .then(() => {})
    6. .catch(() => {})
    ▲ 回顶部

    ✅ Webpack 4 vue.config.js 基础配置

    如果你的 Vue Router 模式是 hash
    1. publicPath: './',
    如果你的 Vue Router 模式是 history 这里的 publicPath 和你的 Vue Router base 保持一直
    1. publicPath: '/app/',
    1. const IS_PROD = ['production', 'prod'].includes(process.env.NODE_ENV)
    2. module.exports = {
    3. publicPath: './', // 部署应用包时的基本 URL。 vue-router hash 模式使用
    4. // publicPath: '/app/', // 部署应用包时的基本 URL。 vue-router history模式使用
    5. outputDir: 'dist', // 生产环境构建文件的目录
    6. assetsDir: 'static', // outputDir的静态资源(js、css、img、fonts)目录
    7. lintOnSave: false,
    8. productionSourceMap: false, // 如果你不需要生产环境的 source map,可以将其设置为 false 以加速生产环境构建。
    9. devServer: {
    10. port: 9020, // 端口号
    11. open: false, // 启动后打开浏览器
    12. overlay: {
    13. // 当出现编译器错误或警告时,在浏览器中显示全屏覆盖层
    14. warnings: false,
    15. errors: true
    16. }
    17. // ...
    18. }
    19. }
    ▲ 回顶部

    ✅ 配置 alias 别名

    1. const path = require('path')
    2. const resolve = dir => path.join(__dirname, dir)
    3. const IS_PROD = ['production', 'prod'].includes(process.env.NODE_ENV)
    4. module.exports = {
    5. chainWebpack: config => {
    6. // 添加别名
    7. config.resolve.alias
    8. .set('@', resolve('src'))
    9. .set('assets', resolve('src/assets'))
    10. .set('api', resolve('src/api'))
    11. .set('views', resolve('src/views'))
    12. .set('components', resolve('src/components'))
    13. }
    14. }
    ▲ 回顶部

    ✅ 配置 proxy 跨域

    如果你的项目需要跨域设置,你需要打来 vue.config.js proxy 注释 并且配置相应参数
    !!!注意:你还需要将 **src/config/env.development.js** 里的 **baseApi** 设置成 ‘/‘
    1. module.exports = {
    2. devServer: {
    3. // ....
    4. proxy: {
    5. //配置跨域
    6. '/api': {
    7. target: 'https://test.xxx.com', // 接口的域名
    8. // ws: true, // 是否启用websockets
    9. changOrigin: true, // 开启代理,在本地创建一个虚拟服务端
    10. pathRewrite: {
    11. '^/api': '/'
    12. }
    13. }
    14. }
    15. }
    16. }
    使用 例如: src/api/home.js
    1. export function getUserInfo(params) {
    2. return request({
    3. url: '/api/userinfo',
    4. method: 'post',
    5. data: qs.stringify(params)
    6. })
    7. }
    ▲ 回顶部

    ✅ 配置 打包分析

    1. const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin
    2. module.exports = {
    3. chainWebpack: config => {
    4. // 打包分析
    5. if (IS_PROD) {
    6. config.plugin('webpack-report').use(BundleAnalyzerPlugin, [
    7. {
    8. analyzerMode: 'static'
    9. }
    10. ])
    11. }
    12. }
    13. }
    1. npm run build
    ▲ 回顶部

    ✅ 配置 externals 引入 cdn 资源

    这个版本 CDN 不再引入,我测试了一下使用引入 CDN 和不使用,不使用会比使用时间少。网上不少文章测试 CDN 速度块,这个开发者可 以实际测试一下。
    另外项目中使用的是公共 CDN 不稳定,域名解析也是需要时间的(如果你要使用请尽量使用同一个域名)
    因为页面每次遇到<script>标签都会停下来解析执行,所以应该尽可能减少<script>标签的数量 HTTP请求存在一定的开销,100K 的文件比 5 个 20K 的文件下载的更快,所以较少脚本数量也是很有必要的
    暂时还没有研究放到自己的 cdn 服务器上。
    1. const defaultSettings = require('./src/config/index.js')
    2. const name = defaultSettings.title || 'vue mobile template'
    3. const IS_PROD = ['production', 'prod'].includes(process.env.NODE_ENV)
    4. // externals
    5. const externals = {
    6. vue: 'Vue',
    7. 'vue-router': 'VueRouter',
    8. vuex: 'Vuex',
    9. vant: 'vant',
    10. axios: 'axios'
    11. }
    12. // CDN外链,会插入到index.html中
    13. const cdn = {
    14. // 开发环境
    15. dev: {
    16. css: [],
    17. js: []
    18. },
    19. // 生产环境
    20. build: {
    21. css: ['https://cdn.jsdelivr.net/npm/vant@2.4.7/lib/index.css'],
    22. js: [
    23. 'https://cdn.jsdelivr.net/npm/vue@2.6.11/dist/vue.min.js',
    24. 'https://cdn.jsdelivr.net/npm/vue-router@3.1.5/dist/vue-router.min.js',
    25. 'https://cdn.jsdelivr.net/npm/axios@0.19.2/dist/axios.min.js',
    26. 'https://cdn.jsdelivr.net/npm/vuex@3.1.2/dist/vuex.min.js',
    27. 'https://cdn.jsdelivr.net/npm/vant@2.4.7/lib/index.min.js'
    28. ]
    29. }
    30. }
    31. module.exports = {
    32. configureWebpack: config => {
    33. config.name = name
    34. // 为生产环境修改配置...
    35. if (IS_PROD) {
    36. // externals
    37. config.externals = externals
    38. }
    39. },
    40. chainWebpack: config => {
    41. /**
    42. * 添加CDN参数到htmlWebpackPlugin配置中
    43. */
    44. config.plugin('html').tap(args => {
    45. if (IS_PROD) {
    46. args[0].cdn = cdn.build
    47. } else {
    48. args[0].cdn = cdn.dev
    49. }
    50. return args
    51. })
    52. }
    53. }
    在 public/index.html 中添加
    1. <!-- 使用CDN的CSS文件 -->
    2. <% for (var i in
    3. htmlWebpackPlugin.options.cdn&&htmlWebpackPlugin.options.cdn.css) { %>
    4. <link href="<%= htmlWebpackPlugin.options.cdn.css[i] %>" rel="preload" as="style" />
    5. <link href="<%= htmlWebpackPlugin.options.cdn.css[i] %>" rel="stylesheet" />
    6. <% } %>
    7. <!-- 使用CDN加速的JS文件,配置在vue.config.js下 -->
    8. <% for (var i in
    9. htmlWebpackPlugin.options.cdn&&htmlWebpackPlugin.options.cdn.js) { %>
    10. <script src="<%= htmlWebpackPlugin.options.cdn.js[i] %>"></script>
    11. <% } %>
    ▲ 回顶部

    ✅ 去掉 console.log

    保留了测试环境和本地环境的 console.log
    1. npm i -D babel-plugin-transform-remove-console
    在 babel.config.js 中配置
    1. // 获取 VUE_APP_ENV 非 NODE_ENV,测试环境依然 console
    2. const IS_PROD = ['production', 'prod'].includes(process.env.VUE_APP_ENV)
    3. const plugins = [
    4. [
    5. 'import',
    6. {
    7. libraryName: 'vant',
    8. libraryDirectory: 'es',
    9. style: true
    10. },
    11. 'vant'
    12. ]
    13. ]
    14. // 去除 console.log
    15. if (IS_PROD) {
    16. plugins.push('transform-remove-console')
    17. }
    18. module.exports = {
    19. presets: [['@vue/cli-plugin-babel/preset', {useBuiltIns: 'entry'}]],
    20. plugins
    21. }
    ▲ 回顶部

    ✅ splitChunks 单独打包第三方模块

    1. module.exports = {
    2. chainWebpack: config => {
    3. config.when(IS_PROD, config => {
    4. config
    5. .plugin('ScriptExtHtmlWebpackPlugin')
    6. .after('html')
    7. .use('script-ext-html-webpack-plugin', [
    8. {
    9. // 将 runtime 作为内联引入不单独存在
    10. inline: /runtime\..*\.js$/
    11. }
    12. ])
    13. .end()
    14. config.optimization.splitChunks({
    15. chunks: 'all',
    16. cacheGroups: {
    17. // cacheGroups 下可以可以配置多个组,每个组根据test设置条件,符合test条件的模块
    18. commons: {
    19. name: 'chunk-commons',
    20. test: resolve('src/components'),
    21. minChunks: 3, // 被至少用三次以上打包分离
    22. priority: 5, // 优先级
    23. reuseExistingChunk: true // 表示是否使用已有的 chunk,如果为 true 则表示如果当前的 chunk 包含的模块已经被抽取出去了,那么将不会重新生成新的。
    24. },
    25. node_vendors: {
    26. name: 'chunk-libs',
    27. chunks: 'initial', // 只打包初始时依赖的第三方
    28. test: /[\\/]node_modules[\\/]/,
    29. priority: 10
    30. },
    31. vantUI: {
    32. name: 'chunk-vantUI', // 单独将 vantUI 拆包
    33. priority: 20, // 数字大权重到,满足多个 cacheGroups 的条件时候分到权重高的
    34. test: /[\\/]node_modules[\\/]_?vant(.*)/
    35. }
    36. }
    37. })
    38. config.optimization.runtimeChunk('single')
    39. })
    40. }
    41. }
    ▲ 回顶部

    ✅ 添加 IE 兼容

    之前的方式 会报 @babel/polyfill is deprecated. Please, use required parts of core-js andregenerator-runtime/runtime separately
    @babel/polyfill 废弃,使用 core-jsregenerator-runtime
    1. npm i --save core-js regenerator-runtime
    main.js 中添加
    1. // 兼容 IE
    2. // https://github.com/zloirock/core-js/blob/master/docs/2019-03-19-core-js-3-babel-and-a-look-into-the-future.md#babelpolyfill
    3. import 'core-js/stable'
    4. import 'regenerator-runtime/runtime'
    配置 babel.config.js
    1. const plugins = []
    2. module.exports = {
    3. presets: [['@vue/cli-plugin-babel/preset', {useBuiltIns: 'usage', corejs: 3}]],
    4. plugins
    5. }
    ▲ 回顶部

    ✅ Eslint+Pettier 统一开发规范

    在文件 .prettierrc 里写 属于你的 pettier 规则
    1. {
    2. "printWidth": 120,
    3. "tabWidth": 2,
    4. "singleQuote": true,
    5. "trailingComma": "none",
    6. "semi": false,
    7. "wrap_line_length": 120,
    8. "wrap_attributes": "auto",
    9. "proseWrap": "always",
    10. "arrowParens": "avoid",
    11. "bracketSpacing": false,
    12. "jsxBracketSameLine": true,
    13. "useTabs": false,
    14. "overrides": [{
    15. "files": ".prettierrc",
    16. "options": {
    17. "parser": "json"
    18. }
    19. }]
    20. }
    ▲ 回顶部

    鸣谢

    vue-cli4-config vue-element-admin

    关于我

    获取更多技术相关文章,关注公众号”前端女塾“。
    回复加群,即可加入”前端仙女群“

扫描添加下方的微信并备注 Sol 加交流群,交流学习,及时获取代码最新动态。

如果对你有帮助送我一颗小星星(づ ̄3 ̄)づ╭❤~