mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-11-03 22:13:18 -05: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>
 |