sintonia_webapp/resources/js/composables/content/dashboard_page.ts
2025-03-19 11:01:29 +01:00

17 lines
420 B
TypeScript

import {ref, reactive} from "vue";
export function archive_page() {
const items = ref([])
const selected = ref([])
const loading = ref(false)
const search = ref('')
const listData = reactive({
'itemsPerPage': 5,
'first_page': null,
'last_page': null,
'total_items': 0,
'page': 1,
})
return { items, listData, selected, loading, search }
}