码迷,mamicode.com
首页 > 其他好文 > 详细

常用的工具函数

时间:2019-07-11 20:24:20      阅读:89      评论:0      收藏:0      [点我收藏+]

标签:div   etop   java   函数   exp   names   map   script   new   

得到两个数组的并集, 两个数组的元素为数值或字符串
//tools.js
export const getUnion = (arr1, arr2) => {
  return Array.from(new Set([...arr1, ...arr2]))
}


//调用页面
import { getUnion } from ‘@/libs/tools‘

// 示例
this.openedNames = getUnion(this.openedNames, this.getOpenedNamesByActiveName(name))

// 回调函数
getOpenedNamesByActiveName (name) {
      return this.$route.matched.map(item => item.name).filter(item => item !== name)
}

  

常用的工具函数

标签:div   etop   java   函数   exp   names   map   script   new   

原文地址:https://www.cnblogs.com/LFxanla/p/11171917.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!