splice(index,len,item)是vue中数组变异的方法之一,可以用来删除,更新,和增加数组内容
参数:
index:数组下标
len:替换/删除的长度
item:更新或增加的内容
使用方法 :
1、删除,当参数形式为splice(index,1)时表示删除下标为index的内容
2、更新,当参数形式为splice(index,1,item)时表示用新的值item更新替换掉下标为index的值
3、增加,当参数形式为splice(index,0,item)时表示在下标为index的位置增加一项值为item