adrema/resources/js/views/dashboard/VIndex.vue

26 lines
739 B
Vue
Raw Normal View History

2021-07-04 23:27:00 +02:00
<template>
2022-11-23 00:46:20 +01:00
<div class="gap-6 md:grid-cols-2 xl:grid-cols-4 grid p-6">
2022-11-17 02:15:29 +01:00
<v-block v-for="(block, index) in blocks" :key="index" :title="block.title">
<v-component :data="block.data" :is="block.component"></v-component>
</v-block>
2021-07-04 23:27:00 +02:00
</div>
</template>
<script>
export default {
props: {
data: {},
2022-11-17 02:15:29 +01:00
blocks: {},
2022-02-12 14:56:25 +01:00
},
components: {
2022-11-17 02:15:29 +01:00
'VBlock': () => import('./VBlock'),
'age-group-count': () => import('./AgeGroupCount.vue'),
'efz-pending': () => import('./EfzPending.vue'),
2022-11-17 20:43:51 +01:00
'ps-pending': () => import('./PsPending.vue'),
2022-11-17 02:15:29 +01:00
'testers': () => import('./Testers.vue'),
'member-payment': () => import('./MemberPayment.vue'),
},
2021-07-04 23:27:00 +02:00
};
</script>