2023-09-14 22:30:20 +12:00
|
|
|
import { reactive } from 'vue'
|
|
|
|
|
|
|
|
|
|
export const pagination = reactive({
|
|
|
|
|
start: 0, // pagination offset
|
|
|
|
|
limit: 50, // per page
|
|
|
|
|
total: 0, // total results of current view / filter
|
|
|
|
|
count: 0, // number of messages currently displayed
|
|
|
|
|
})
|