i'm rendering list of +1000 users, is there a way for example to show the first 20 users then the second 20 until the end? because it takes some time to render all the users at one time
or render the first 20 users then show the rest i can for example v-for users.splice(0,20), then v-for the rest users.splice(21) is there any simple way to do things