У меня есть такой код:
async showStore(){
try{
await this.$refs.mdStore.show();
let data = await this.$axios.get(`link`);
this.mdStores.result = data.data.stores;
if(this.mdStores.result.length){
console.log(this.mdStores.result.length);
for(const [i,v] of this.mdStores.result.entries()){
const idx = result.findIndex(row => row.id_store === v.id_store);
if(idx !== -1){
result.splice(idx, 1);
}
}
}
}
const idx = result.findIndex(row => row.id_store === v.id_store);
этот код не работает, и я всегда получаю сообщение об ошибке в этой части.