mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-28 12:11:08 -04:00
22 lines
416 B
Vue
22 lines
416 B
Vue
<template>
|
|
<base-page>
|
|
<dashboard-stats />
|
|
<dashboard-chart />
|
|
<dashboard-table />
|
|
</base-page>
|
|
</template>
|
|
|
|
<script>
|
|
import DashboardStats from '../dashboard/DashboardStats'
|
|
import DashboardChart from '../dashboard/DashboardChart'
|
|
import DashboardTable from '../dashboard/DashboardTable'
|
|
|
|
export default {
|
|
components: {
|
|
DashboardStats,
|
|
DashboardChart,
|
|
DashboardTable,
|
|
},
|
|
}
|
|
</script>
|