Files
InvoiceShelf/resources/scripts/customer/views/dashboard/Dashboard.vue
Darko Gjorgjijoski 8160b53689 Ditch global components
2025-01-12 17:53:44 +01:00

13 lines
350 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'
import BasePage from '@/scripts/components/base/BasePage.vue'
</script>