日常技巧汇总贴

  • win10更换头像
    图片默认的地址使用:C:\ProgramData\Microsoft\User Account Pictures

  • vue 数组的过滤(记录于2018-7-6 14:18:20)

delMachine(index) {
      var ss = th.shopHaveMachineList;
      th.shopHaveMachineList = ss.filter(function(item, inde, ss) {
        return inde != index;
      });
    }

猜你喜欢

转载自blog.csdn.net/webfullstack/article/details/80826871