<template>
<customPagination
:current="current"
:total="total"
:per-page="perPage"
@page-changed="current = $event"
:showFilter="true"
/>
</template>
<script>
import { defineComponent } from "vue";
import customPagination from "./index.vue";
export default defineComponent({
name: "Pagination Example",
components: {
customPagination,
},
data() {
return {
current: 1,
perPage: 2,
total: 20,
};
},
});
</script>
-
Notifications
You must be signed in to change notification settings - Fork 0
Mr-Excel/vue-pagination
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About
No description, website, or topics provided.
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published