mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-11-03 22:13:18 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			261 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			261 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <div class="site-wrapper h-full text-base">
 | 
						|
    <div class="container mx-auto">
 | 
						|
      <router-view></router-view>
 | 
						|
    </div>
 | 
						|
  </div>
 | 
						|
</template>
 | 
						|
 | 
						|
<script type="text/babel">
 | 
						|
export default {
 | 
						|
  watch: {
 | 
						|
    $route: 'onRouteChange',
 | 
						|
  },
 | 
						|
}
 | 
						|
</script>
 |