kopia lustrzana https://github.com/elk-zone/elk
				
				
				
			
		
			
				
	
	
		
			31 wiersze
		
	
	
		
			380 B
		
	
	
	
		
			Vue
		
	
	
			
		
		
	
	
			31 wiersze
		
	
	
		
			380 B
		
	
	
	
		
			Vue
		
	
	
| <script setup>
 | |
| useHead({
 | |
|   title: 'Nuxtodon',
 | |
|   link: [
 | |
|     {
 | |
|       rel: 'icon', type: 'image/png', href: '/nuxt.png',
 | |
|     },
 | |
|   ],
 | |
| })
 | |
| </script>
 | |
| 
 | |
| <template>
 | |
|   <NuxtLoadingIndicator />
 | |
|   <NuxtLayout>
 | |
|     <NuxtPage />
 | |
|   </NuxtLayout>
 | |
| </template>
 | |
| 
 | |
| <style>
 | |
| html, body , #__nuxt{
 | |
|   height: 100vh;
 | |
|   margin: 0;
 | |
|   padding: 0;
 | |
| }
 | |
| 
 | |
| html.dark {
 | |
|   background: #222;
 | |
|   color: white;
 | |
| }
 | |
| </style>
 |