Skip to content

Commit d1e2f4f

Browse files
committed
doc: update big-data demo
1 parent bc5928e commit d1e2f4f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

components/select/__tests__/__snapshots__/demo.test.js.snap

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ exports[`renders ./components/select/demo/basic.vue correctly 1`] = `
9393
`;
9494
9595
exports[`renders ./components/select/demo/big-data.vue correctly 1`] = `
96-
<h2>10000 Items</h2>
96+
<h2>100000 Items</h2>
9797
<div style="width: 100%;" class="ant-select ant-select-multiple ant-select-show-search">
9898
<!---->
9999
<!---->

components/select/demo/big-data.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Select use virtual scroll which get better performance than 1.x
2929
<script lang="ts">
3030
import { defineComponent, reactive } from 'vue';
3131
const options: { value: string; disabled: boolean }[] = [];
32-
for (let i = 0; i < 10000; i++) {
32+
for (let i = 0; i < 100000; i++) {
3333
const value = `${i.toString(36)}${i}`;
3434
options.push({
3535
value,

0 commit comments

Comments
 (0)