摘要: 1、对项目打包文件进行gzip压缩,插件“compression-webpack-plugin”,在vue.config.js中配置 yarn add compression-webpack-plugin -D // 如果报错,就降版本5.0.1 const path = require("path 阅读全文
posted @ 2021-07-05 17:07 我咯I 阅读(197) 评论(0) 推荐(0)
摘要: 1、纯数组(不含对象或子数组) var array = [1,2,3,3,4,5]; console.log(Array.from(new Set(array))) //输出 [1, 2, 3, 4, 5] 2、含对象或子数组的 function ret(arr) { const res = []; 阅读全文
posted @ 2021-07-05 15:58 我咯I 阅读(351) 评论(0) 推荐(0)