#8113 create arrayDataStore map #979
|
@ -76,7 +76,7 @@ const props = defineProps({
|
||||||
},
|
},
|
||||||
mapKey: {
|
mapKey: {
|
||||||
type: String,
|
type: String,
|
||||||
default: 'id',
|
default: '',
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
const emit = defineEmits(['onFetch', 'onPaginate', 'onChange']);
|
const emit = defineEmits(['onFetch', 'onPaginate', 'onChange']);
|
||||||
|
|
|
@ -290,7 +290,7 @@ export function useArrayData(key = useRoute().meta.moduleName, userOptions) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!map && !append) store.data = data;
|
if (!map && !append) store.data = data;
|
||||||
else if (!map && append) store.data.push(...data);
|
else if (!map && append) for (const row of data) store.data.push(row);
|
||||||
|
|||||||
else
|
else
|
||||||
data.forEach((row) => {
|
data.forEach((row) => {
|
||||||
const key = row[store.mapKey];
|
const key = row[store.mapKey];
|
||||||
|
|
Loading…
Reference in New Issue
Se podría usar ... pero he leído que en términos de rendimiento a la hora de manejar arrays muy grande es más rápido un for.