mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-28 04:01:10 -04:00
12 lines
288 B
Vue
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>
|