vue 相关 全局引用 在mian Vue.prototype.xxx = xxx 调用只用在页面中调用 this.xxx
js相关 数组去重 new Set(arr) 返回一个去重后的数组
let arr = [1, 1, 1, 1, 22, 2, 2, 22, 2];
数组过滤 list.filter((currentValue)=> {
if (currentValue > 1) {
return true;
}}) 会得到 值大于1的数组
css 相关 css order属性 做排序使用