this.arr.sort()

如需指定字段排序

this.arr.sort(function(a,b){
    return a.id- b.id
})