mirror of
				https://github.com/KevinMidboe/planetposen.git
				synced 2025-10-29 17:50:32 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			337 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			337 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|   <div>
 | |
|     <Navigation></Navigation>
 | |
| 
 | |
|     <router-view />
 | |
|   </div>
 | |
| </template>
 | |
| 
 | |
| <script>
 | |
| import Navigation from '@/components/Navigation';
 | |
| 
 | |
| export default {
 | |
|   name: 'App',
 | |
|   components: { Navigation }
 | |
| }
 | |
| </script>
 | |
| 
 | |
| <style lang="scss">
 | |
| @import './styles/normalize';
 | |
| @import './styles/icons';
 | |
| @import './styles/global';
 | |
| </style> |