美文网首页
小功能总结

小功能总结

作者: 张xiao蛋 | 来源:发表于2019-05-17 09:51 被阅读0次

    一,数组去重

    // 数组去重1
            var arr = []
            this.multipleSelection = this.multipleSelection.filter(item => {
              let arrlist = this.GoodsChoiceDATA.map(v => v.id)
              return !arrlist.includes(item.id)
            })
            arr = this.multipleSelection
    // ES6数组去重
          unique (arr) {
            return Array.from(new Set(arr))
          },
    

    二,添加标签与标签之间添加竖直的分割线(伪类添加)

    &:after {
          content: '';
          position: absolute;
          left: 0;
          top: 0;
          bottom: 0;
          margin: auto;
          height: 26px;
          width: 1px;
          background: red;
        }
    

    相关文章

      网友评论

          本文标题:小功能总结

          本文链接:https://www.haomeiwen.com/subject/rcqnaqtx.html