2 | Test Pagination
3 |
4 |
76 |
77 |
78 |
106 |
107 |
--------------------------------------------------------------------------------
/src/main.ts:
--------------------------------------------------------------------------------
1 | import { createApp } from 'vue'
2 | import App from './App.vue'
3 |
4 | createApp(App).mount('#app')
5 |
--------------------------------------------------------------------------------
/src/usePaginator.ts:
--------------------------------------------------------------------------------
1 | import { ref, computed, watch } from 'vue'
2 | import type { Ref, ComputedRef } from 'vue'
3 |
4 | type MaybeRef