Files
crater/resources/scripts/customer/views/dashboard/Dashboard.vue
Mohit Panjwani bdea879273 v6 update
2022-01-10 16:06:17 +05:30

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>