摘要:
1.require.context() reqire.context() 其实是 webpack 的方法,vue-cli 是基于 webpack 的,而且基本上 vue 项目都是基于 webpack 进行工程化了的,所以是可以用这个 API 方法的; require.context(director 阅读全文
摘要:
删除数组的重复项 var arr = [1, 2, 5, 6, 2]; 方法一: let result = Array.from(new Set(arr)) 方法二: let result = [...new Set(arr)] 替换数组中的特定值 var arr = ['a1', 'a2', 'a 阅读全文