Explorer
home
/
zoteqbgb
/
public_html
/
resources
/
js
/
components
/
admin
/
components
/
pagination
Location:
/home/zoteqbgb/public_html/resources/js/components/admin/components/pagination
Root path:
/home/zoteqbgb/public_html/config/676626
Editing: PaginationBox.vue
<template> <div> <TailwindPagination :data="pagination" @pagination-change-page="page" :active-classes="activeClass" :limit="1" /> </div> </template> <script> import { TailwindPagination } from 'laravel-vue-pagination'; export default { name: "PaginationBox", components: {TailwindPagination}, props: { pagination: {type: Object}, method: {type: Function} }, data() { return { activeClass : [ "bg-blue-50", "border-blue-500", "text-primary" ] } }, methods: { page: function (page = 1) { this.method(page); } } } </script>
Save maftirs
Upload
Start Upload
New File
Create File
New Folder
Create Folder
Directory Contents
Name
Size
Perms
Modified
Actions
PaginationBox.vue
738 bytes
0644
2025-04-25 02:11
âï¸
ðï¸
Rename
PaginationSMBox.vue
843 bytes
0644
2025-04-25 02:11
âï¸
ðï¸
Rename
PaginationTextComponent.vue
420 bytes
0644
2025-04-25 02:11
âï¸
ðï¸
Rename
Chang
Apply