File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ exports[`renders ./components/select/demo/basic.vue correctly 1`] = `
9393`;
9494
9595exports[`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 <!---->
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ Select use virtual scroll which get better performance than 1.x
2929<script lang="ts">
3030import { defineComponent , reactive } from ' vue' ;
3131const 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 ,
You can’t perform that action at this time.
0 commit comments