Vuetify pagination not cycling through on button click

I am having trouble implementing Veutify’s pagination component to cycle through my array. <template> <div class="grid grid-cols-4 gap-5"> <div v-for="(item, index) in pagedAssets" :key="`asset_index_${index}`"> {{ item }} </div> <v-pagination v-model="pageNo" :length="numPages" ></v-pagination> </div> </template> <script setup> let pageSize = 4; let pageNo = 1; let assets = ["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16"]; const numPages = computed(() => { //… Read More Vuetify pagination not cycling through on button click