mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-11-03 22:13:18 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			328 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			328 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
<script setup>
 | 
						|
import DashboardStats from '../dashboard/DashboardStats.vue'
 | 
						|
import DashboardChart from '../dashboard/DashboardChart.vue'
 | 
						|
import DashboardTable from '../dashboard/DashboardTable.vue'
 | 
						|
</script>
 | 
						|
 | 
						|
<template>
 | 
						|
  <BasePage>
 | 
						|
    <DashboardStats />
 | 
						|
    <DashboardChart />
 | 
						|
    <DashboardTable />
 | 
						|
  </BasePage>
 | 
						|
</template>
 |