@@ -125,8 +125,8 @@ export default {
{label: 'Yokohama', value: 'Yokohama'}
]
}],
- items: Array.from({ length: 1000 }, (_, i) => ({ label: `Item #${i}`, value: i })),
- lazyItems: Array.from({ length: 1000 })
+ items: Array.from({ length: 100000 }, (_, i) => ({ label: `Item #${i}`, value: i })),
+ lazyItems: Array.from({ length: 100000 })
}
},
loadLazyTimeout: null,
diff --git a/src/views/dropdown/DropdownDoc.vue b/src/views/dropdown/DropdownDoc.vue
index 58cd0c3ab..cb8d71af3 100755
--- a/src/views/dropdown/DropdownDoc.vue
+++ b/src/views/dropdown/DropdownDoc.vue
@@ -632,8 +632,8 @@ export default {
{label: 'Yokohama', value: 'Yokohama'}
]
}],
- items: Array.from({ length: 1000 }, (_, i) => ({ label: \`Item #\${i}\`, value: i })),
- lazyItems: Array.from({ length: 1000 })
+ items: Array.from({ length: 100000 }, (_, i) => ({ label: \`Item #\${i}\`, value: i })),
+ lazyItems: Array.from({ length: 100000 })
}
},
loadLazyTimeout: null,
@@ -793,8 +793,8 @@ export default {
}
]);
- const items = ref(Array.from({ length: 1000 }, (_, i) => ({ label: \`Item #\${i}\`, value: i })));
- const lazyItems = ref(Array.from({ length: 1000 }));
+ const items = ref(Array.from({ length: 100000 }, (_, i) => ({ label: \`Item #\${i}\`, value: i })));
+ const lazyItems = ref(Array.from({ length: 100000 }));
return { selectedCity1, selectedCity2, selectedCountry, selectedGroupedCity, cities, countries, groupedCities, selectedItem1, selectedItem2, loading, items, lazyItems}
},
@@ -953,8 +953,8 @@ export default {
}
]);
- const items = ref(Array.from({ length: 1000 }, (_, i) => ({ label: \`Item #\${i}\`, value: i })));
- const lazyItems = ref(Array.from({ length: 1000 }));
+ const items = ref(Array.from({ length: 100000 }, (_, i) => ({ label: \`Item #\${i}\`, value: i })));
+ const lazyItems = ref(Array.from({ length: 100000 }));
return { selectedCity1, selectedCity2, selectedCountry, selectedGroupedCity, cities, countries, groupedCities, selectedItem1, selectedItem2, loading, items, lazyItems}
},
diff --git a/src/views/listbox/ListboxDemo.vue b/src/views/listbox/ListboxDemo.vue
index 5f5e349f5..5bea7f0bc 100755
--- a/src/views/listbox/ListboxDemo.vue
+++ b/src/views/listbox/ListboxDemo.vue
@@ -33,7 +33,7 @@
-
Virtual Scroll (1000 Items)
+ Virtual Scroll (100000 Items)