mirror of
https://github.com/axllent/mailpit.git
synced 2025-01-26 03:52:09 +02:00
9 lines
238 B
JavaScript
9 lines
238 B
JavaScript
|
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
|
||
|
})
|