mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-11-04 06:23:17 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			296 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			296 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <div class="h-screen overflow-y-auto text-base">
 | 
						|
    <NotificationRoot />
 | 
						|
 | 
						|
    <div class="container mx-auto px-4">
 | 
						|
      <router-view />
 | 
						|
    </div>
 | 
						|
  </div>
 | 
						|
</template>
 | 
						|
 | 
						|
<script setup>
 | 
						|
import NotificationRoot from '@/scripts/components/notifications/NotificationRoot.vue'
 | 
						|
</script>
 |