vue, updating an array with subscripts is not successful and needs to be updated using the set method, but updating a specific variable in the array with a subscript is an updatable
this.list [0] = {mes:10} / / cannot update the view
this.list [0]. Mes = 10mp / can be updated
this is why