fix: fix issues with pagination
This commit is contained in:
parent
5ce1f42c25
commit
6d338bbacb
1 changed files with 5 additions and 1 deletions
|
@ -98,7 +98,11 @@ function goTo(page: number) {
|
|||
<div class="d-flex f-between">
|
||||
<div>
|
||||
<span>Lignes par page </span>
|
||||
<select class="btn-small btn-outline" v-model="table.pageLenght">
|
||||
<select
|
||||
class="btn-small btn-outline"
|
||||
v-model.number="table.pageLenght"
|
||||
@change="table.currentPage = 0"
|
||||
>
|
||||
<option>5</option>
|
||||
<option>10</option>
|
||||
<option>15</option>
|
||||
|
|
Loading…
Reference in a new issue