PAMapp/components/Ui/UiPagination.vue
@@ -12,12 +12,12 @@ <script lang="ts"> import { Vue, Component, Prop, Emit, Watch } from 'nuxt-property-decorator'; import { Consultants } from '~/assets/ts/api/consultant'; import { Consultants } from '~/assets/ts/models/consultant.model'; @Component export default class UiPagination extends Vue { @Prop() totalList!: Consultants[]; pageSize = 5; @Prop({default: 5}) pageSize!: number; currentPage = 1; pageList: Consultants[] = [];