[Vuejs]-Increasing the size of $state.store.object in a vue.js project

0👍

Try to set this.list value at one go, rather then .push all 81k items into it:

this.list = [].concat(this.list, response.data);

Leave a comment