常用的工具函数
Posted lfxanla
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了常用的工具函数相关的知识,希望对你有一定的参考价值。
得到两个数组的并集, 两个数组的元素为数值或字符串
//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)
以上是关于常用的工具函数的主要内容,如果未能解决你的问题,请参考以下文章