feat(FE dashboard): draft

This commit is contained in:
Michael 2025-03-19 10:59:17 +01:00
parent 36da912989
commit 0383192604

View file

@ -0,0 +1,18 @@
import axios from "axios";
import {ref, reactive, computed} 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 }
}