1
0
mirror of https://github.com/axllent/mailpit.git synced 2025-01-20 03:29:56 +02:00
mailpit/server/ui-src/stores/pagination.js
2023-09-22 15:06:03 +12:00

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
})