Vue 项目优化

注意:该文档基于 @vue/cli 3.x 版本

页面加载优化

  • 可视化 webpack 构建
  • 启用文件缓存,删除 console.log
  • 公共代码提取 splitChunks
  • CDN 引入
  • 开启 gzip CompressionPlugin
  • 图片压缩 image-webpack-loader
  • 尺寸大的图片尽量走 cdn
  • element 等组件库按需加载
  • 路由切割
  • 组件懒加载

可视化 webpack 构建

安装 webpack-bundle-analyzer:

  1. yarn add webpack-bundle-analyzer -D
  2. // or
  3. npm install webpack-bundle-analyzer -D
  1. const BundleAnalyzerPlugin = require('webpack-bundle-analyzer')
  2. .BundleAnalyzerPlugin;
  3. module.exports = {
  4. configureWebpack: {
  5. plugins: [new BundleAnalyzerPlugin()],
  6. },
  7. };

启用文件缓存,删除 console.log

启用文件缓存,减少打包时间,删除 console.log,减少代码体积。

安装 uglifyjs-webpack-plugin:

  1. yarn add uglifyjs-webpack-plugin -D
  2. // or
  3. npm install uglifyjs-webpack-plugin -D
  1. const UglifyJsPlugin = require('uglifyjs-webpack-plugin');
  2. module.exports = {
  3. configureWebpack: {
  4. optimization: {
  5. minimizer: [
  6. new UglifyJsPlugin({
  7. cache: true, // 是否启用文件缓存
  8. parallel: true, // 使用多进程并行运行来提高构建速度
  9. sourceMap: true,
  10. uglifyOptions: {
  11. warnings: false,
  12. compress: {
  13. drop_debugger: true,
  14. drop_console: true,
  15. pure_funcs: ['console.log'],
  16. },
  17. },
  18. }),
  19. ],
  20. },
  21. },
  22. };

公共代码提取

使用 splitChunks 提取代码提取,减少重复代码。

PS: maxSize 选项与骨架屏方案,注入 html 有冲突。

  1. module.exports = {
  2. configureWebpack: {
  3. optimization: {
  4. splitChunks: {
  5. maxSize: 300000,
  6. cacheGroups: {
  7. common: {
  8. name: 'common',
  9. chunks: 'initial',
  10. minChunks: 2, // 模块被引用次数
  11. priority: -20, // 优先级
  12. reuseExistingChunk: true, // 重用已拆分模块
  13. },
  14. vendors: {
  15. test: /[\\/]node_modules[\\/]/,
  16. name: 'vendors',
  17. chunks: 'all',
  18. minChunks: 2,
  19. priority: -10,
  20. reuseExistingChunk: true,
  21. },
  22. },
  23. },
  24. },
  25. },
  26. };

CDN 引入

使用 externals 配置,构建时忽略 npm 模块。

  1. const isProduction = process.env.NODE_ENV === 'production';
  2. const CDN_BACE_URL = process.env.CDN_BACE_URL;
  3. const cdn = {
  4. css: [`${CDN_BACE_URL}static/js/element-ui-2.13.2.css`],
  5. js: [
  6. `${CDN_BACE_URL}static/js/vue-2.6.11.js`,
  7. `${CDN_BACE_URL}static/js/axios-0.19.0.js`,
  8. `${CDN_BACE_URL}static/js/vuex-3.4.0.js`,
  9. `${CDN_BACE_URL}static/js/vue-router-3.3.2.js`,
  10. `${CDN_BACE_URL}static/js/element-ui-2.13.2.js`,
  11. ],
  12. };
  13. const externals = {
  14. vue: 'Vue',
  15. axios: 'axios',
  16. vuex: 'Vuex',
  17. 'vue-router': 'VueRouter',
  18. 'element-ui': 'ELEMENT',
  19. };
  20. module.exports = {
  21. configureWebpack: {
  22. externals: { ...externals },
  23. },
  24. chainWebpack: (config) => {
  25. // 生产环境注入 cdn
  26. if (isProduction) {
  27. config.plugin('html').tap((args) => {
  28. args[0].cdn = cdn;
  29. return args;
  30. });
  31. }
  32. },
  33. };

public/index.html:

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6. <meta name="viewport" content="width=device-width,initial-scale=1.0" />
  7. <link rel="icon" href="<%= BASE_URL %>favicon.ico" />
  8. <% for (var i in
  9. htmlWebpackPlugin.options.cdn&&htmlWebpackPlugin.options.cdn.css) { %>
  10. <link
  11. href="<%= htmlWebpackPlugin.options.cdn.css[i] %>"
  12. rel="preload"
  13. as="style"
  14. />
  15. <link href="<%= htmlWebpackPlugin.options.cdn.css[i] %>" rel="stylesheet" />
  16. <% } %> <% for (var i in
  17. htmlWebpackPlugin.options.cdn&&htmlWebpackPlugin.options.cdn.js) { %>
  18. <link
  19. href="<%= htmlWebpackPlugin.options.cdn.js[i] %>"
  20. rel="preload"
  21. as="script"
  22. />
  23. <% } %>
  24. <title><%= htmlWebpackPlugin.options.title %></title>
  25. </head>
  26. <body>
  27. <noscript>
  28. <strong
  29. >We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work
  30. properly without JavaScript enabled. Please enable it to
  31. continue.</strong
  32. >
  33. </noscript>
  34. <div id="app"></div>
  35. <!-- built files will be auto injected -->
  36. <% for (var i in
  37. htmlWebpackPlugin.options.cdn&&htmlWebpackPlugin.options.cdn.js) { %>
  38. <script src="<%= htmlWebpackPlugin.options.cdn.js[i] %>"></script>
  39. <% } %>
  40. </body>
  41. </html>

PS: 不推荐使用第三方的 cdn,第三方 cdn 主要个人或者企业靠捐赠资助,没有义务保证稳定性的,所以在企业项目上还是要特别注意,要是 cdn 挂了导致生产事故就得不偿失了,推荐使用自己公司的 cdn

gzip 压缩

生成类似 chunk-vendors.f5cbf099.js.gz 格式的文件。

安装 compression-webpack-plugin:

  1. yarn add compression-webpack-plugin -D
  2. // or
  3. npm install compression-webpack-plugin -D
  1. const CompressionPlugin = require('compression-webpack-plugin');
  2. const productionGzipExtensions = ['js', 'css'];
  3. module.exports = {
  4. configureWebpack: {
  5. plugins: [
  6. new CompressionPlugin({
  7. test: new RegExp('\\.(' + productionGzipExtensions.join('|') + ')$'),
  8. algorithm: 'gzip',
  9. threshold: 10240,
  10. minRatio: 0.8,
  11. }),
  12. ],
  13. },
  14. };

图片压缩

使用 image-webpack-loader 对图片进行压缩。

  1. module.exports = {
  2. chainWebpack: (config) => {
  3. const imagesRule = config.module.rule('images');
  4. imagesRule
  5. .use('url-loader')
  6. .loader('url-loader')
  7. .tap((options) => Object.assign(options, { limit: 6144 }));
  8. imagesRule
  9. .use('image-webpack-loader')
  10. .loader('image-webpack-loader')
  11. .options({
  12. bypassOnDebug: true,
  13. })
  14. .end();
  15. },
  16. };

element-ui 按需引入

借助 babel-plugin-component,我们可以只引入需要的组件,以达到减小项目体积的目的。

安装 babel-plugin-component:

  1. yarn add babel-plugin-component -D
  2. // or
  3. npm install babel-plugin-component -D

然后,将 .babelrc 修改为:

  1. // babel.config.js
  2. {
  3. "presets": [["es2015", { "modules": false }]],
  4. "plugins": [
  5. [
  6. "component",
  7. {
  8. "libraryName": "element-ui",
  9. "styleLibraryName": "theme-chalk"
  10. }
  11. ]
  12. ]
  13. }

按需引入:

  1. import Vue from 'vue';
  2. import { Button, Select } from 'element-ui';
  3. import App from './App.vue';
  4. Vue.use(Button);
  5. Vue.use(Select);
  6. new Vue({
  7. el: '#app',
  8. render: (h) => h(App),
  9. });

组件异步加载

Vue | 异步组件

  1. Vue.component(
  2. 'async-webpack-example',
  3. // 这个动态导入会返回一个 `Promise` 对象。
  4. () => import('./my-async-component')
  5. );
  6. // or
  7. new Vue({
  8. // ...
  9. components: {
  10. 'my-component': () => import('./my-async-component'),
  11. },
  12. });

路由懒加载

结合 Vue 的异步组件和 Webpack 的代码分割功能,轻松实现路由组件的懒加载,Vue CLI 3.0 默认配置。

Vue Router | 路由懒加载

  1. const router = new VueRouter({
  2. routes: [
  3. {
  4. path: '/foo',
  5. component: () => import(/* webpackChunkName: "group-foo" */ './Foo.vue'),
  6. },
  7. ],
  8. });

项目构建优化

  • 构建进度条
  • 构建速度监测
  • 多进程构建 thread-loader
  • 编译速度 DLL

构建进度条

安装 webpackbar

  1. yarn add webpackbar -D
  2. // or
  3. npm install webpackbar -D

构建速度监测

安装 webpackbar

  1. yarn add speed-measure-webpack-plugin -D
  2. // or
  3. npm install speed-measure-webpack-plugin -D

多进程构建

安装 thread-loader

  1. yarn add thread-loader -D
  2. // or
  3. npm install thread-loader -D
  1. module.exports = {
  2. configureWebpack: {
  3. module: {
  4. rules: [
  5. {
  6. test: /\.js$/,
  7. include: path.resolve('src'),
  8. use: ['thread-loader'],
  9. },
  10. ],
  11. },
  12. },
  13. };

编译速度 DLL

🚧

代码层面优化

  • Object.freeze
  • v-if vs v-show
  • v-for key
  • keep-alive
  • computed
  • beforeDestroy
  • debounce throttle

Object.freeze

使用 Object.freeze(),这会阻止修改现有的 property,也意味着响应系统无法再追踪变化。

  1. var obj = {
  2. foo: 'bar',
  3. };
  4. Object.freeze(obj);
  5. new Vue({
  6. el: '#app',
  7. data: obj,
  8. });

v-if vs v-show

v-if 是“真正”的条件渲染,因为它会确保在切换过程中条件块内的事件监听器和子组件适当地被销毁和重建。

v-if 也是惰性的:如果在初始渲染时条件为假,则什么也不做——直到条件第一次变为真时,才会开始渲染条件块。

相比之下,v-show 就简单得多——不管初始条件是什么,元素总是会被渲染,并且只是简单地基于 CSS 进行切换。

一般来说,v-if 有更高的切换开销,而 v-show 有更高的初始渲染开销。因此,如果需要非常频繁地切换,则使用 v-show 较好;如果在运行时条件很少改变,则使用 v-if 较好。

v-for key

key 的特殊 attribute 主要用在 Vue 的虚拟 DOM 算法,在新旧 nodes 对比时辨识 VNodes。如果不使用 key,Vue 会使用一种最大限度减少动态元素并且尽可能的尝试就地修改/复用相同类型元素的算法。而使用 key 时,它会基于 key 的变化重新排列元素顺序,并且会移除 key 不存在的元素。

  1. <ul>
  2. <li v-for="item in items" :key="item.id">...</li>
  3. </ul>

keep-alive

Vue | keep-alive

包裹动态组件时,会缓存不活动的组件实例,而不是销毁它们。

  1. <!-- 基本 -->
  2. <keep-alive>
  3. <component :is="view"></component>
  4. </keep-alive>
  5. <!-- 多个条件判断的子组件 -->
  6. <keep-alive>
  7. <comp-a v-if="a > 1"></comp-a>
  8. <comp-b v-else></comp-b>
  9. </keep-alive>
  10. <!-- `<transition>` 一起使用 -->
  11. <transition>
  12. <keep-alive>
  13. <component :is="view"></component>
  14. </keep-alive>
  15. </transition>

computed

在模板中放入太多的逻辑会让模板过重且难以维护,且每次触发 render 都是调用模板内的表达式,消耗性能。
计算属性的结果会被缓存,除非依赖的响应式 property 变化才会重新计算。

  1. var vm = new Vue({
  2. el: '#example',
  3. data: {
  4. message: 'Hello'
  5. },
  6. computed: {
  7. // 计算属性的 getter
  8. reversedMessage: function () {
  9. // `this` 指向 vm 实例
  10. return this.message.split('').reverse().join('')
  11. }
  12. }
  13. })

beforeDestroy

在组件销毁之前,移除事件监听、定时器等,内存不被回收,可能造成内存溢出。

debounce throttle

Lodash | debounce

使用 debounce throttle 减少重复性能消耗。

vue.config.js

  1. const path = require('path');
  2. const WebpackBar = require('webpackbar');
  3. const UglifyJsPlugin = require('uglifyjs-webpack-plugin');
  4. const SpeedMeasurePlugin = require('speed-measure-webpack-plugin');
  5. const smp = new SpeedMeasurePlugin();
  6. const BundleAnalyzerPlugin = require('webpack-bundle-analyzer')
  7. .BundleAnalyzerPlugin;
  8. const CompressionPlugin = require('compression-webpack-plugin');
  9. const productionGzipExtensions = ['js', 'css'];
  10. const isDevelopment = process.env.NODE_ENV === 'development';
  11. const isProduction = process.env.NODE_ENV === 'production';
  12. const externals = {
  13. vue: 'Vue',
  14. vuex: 'Vuex',
  15. 'vue-router': 'VueRouter',
  16. axios: 'axios',
  17. echarts: 'echarts',
  18. 'element-ui': 'ELEMENT',
  19. };
  20. const CDN_BACE_URL = process.env.VUE_APP_ALI_URL;
  21. const cdn = {
  22. css: [`${CDN_BACE_URL}static/js/element-ui-2.13.2.css`],
  23. js: [
  24. `${CDN_BACE_URL}static/js/vue-2.6.11.js`,
  25. `${CDN_BACE_URL}static/js/vuex-3.4.0.js`,
  26. `${CDN_BACE_URL}static/js/vue-router-3.3.2.js`,
  27. `${CDN_BACE_URL}static/js/axios-0.19.0.js`,
  28. `${CDN_BACE_URL}static/js/echarts.min-4.7.0.js`,
  29. `${CDN_BACE_URL}static/js/element-ui-2.13.2.js`,
  30. ],
  31. };
  32. const commonPlugins = [new WebpackBar()];
  33. module.exports = {
  34. lintOnSave: isDevelopment,
  35. productionSourceMap: isDevelopment,
  36. chainWebpack: (config) => {
  37. const imagesRule = config.module.rule('images');
  38. imagesRule
  39. .use('url-loader')
  40. .loader('url-loader')
  41. .tap((options) => Object.assign(options, { limit: 6144 }));
  42. imagesRule
  43. .use('image-webpack-loader')
  44. .loader('image-webpack-loader')
  45. .options({
  46. bypassOnDebug: true,
  47. })
  48. .end();
  49. if (isProduction) {
  50. config.plugin('html').tap((args) => {
  51. args[0].cdn = cdn;
  52. return args;
  53. });
  54. }
  55. },
  56. configureWebpack: isProduction
  57. ? smp.wrap({
  58. module: {
  59. rules: [
  60. {
  61. test: /\.js$/,
  62. include: path.resolve('src'),
  63. use: ['thread-loader'],
  64. },
  65. ],
  66. },
  67. plugins: [
  68. ...commonPlugins,
  69. new BundleAnalyzerPlugin(),
  70. new CompressionPlugin({
  71. test: new RegExp(
  72. '\\.(' + productionGzipExtensions.join('|') + ')$'
  73. ),
  74. algorithm: 'gzip',
  75. threshold: 10240,
  76. minRatio: 0.8,
  77. }),
  78. ],
  79. externals: { ...externals },
  80. optimization: {
  81. minimizer: [
  82. new UglifyJsPlugin({
  83. cache: true, // 是否启用文件缓存
  84. parallel: true, // 使用多进程并行运行来提高构建速度
  85. sourceMap: false,
  86. uglifyOptions: {
  87. warnings: false,
  88. compress: {
  89. drop_debugger: true,
  90. drop_console: true,
  91. pure_funcs: ['console.log'],
  92. },
  93. },
  94. }),
  95. ],
  96. splitChunks: {
  97. maxSize: 300000,
  98. cacheGroups: {
  99. common: {
  100. name: 'common',
  101. chunks: 'initial',
  102. minChunks: 2, // 模块被引用次数
  103. priority: -20, // 优先级
  104. reuseExistingChunk: true, // 重用已拆分模块
  105. },
  106. vendors: {
  107. test: /[\\/]node_modules[\\/]/,
  108. name: 'vendors',
  109. chunks: 'all',
  110. minChunks: 2,
  111. priority: -10,
  112. reuseExistingChunk: true,
  113. },
  114. },
  115. },
  116. },
  117. })
  118. : { plugins: commonPlugins },
  119. };