mirror of
https://github.com/axllent/mailpit.git
synced 2025-01-20 03:29:56 +02:00
6a4e5fb03c
See #156
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
|
|
})
|