Files
docker_dev/crater/resources/scripts/customer/views/dashboard/Dashboard.vue
2025-09-20 16:11:47 +02:00

12 lines
288 B
Vue

<template>
<BasePage>
<DashboardStats />
<DashboardTable />
</BasePage>
</template>
<script setup>
import DashboardStats from '@/scripts/customer/views/dashboard/DashboardStats.vue'
import DashboardTable from '@/scripts/customer/views/dashboard/DashboardTable.vue'
</script>