28 lines
		
	
	
		
			616 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			616 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|   <RouterView class="has-navbar-fixed-top"/>
 | |
| </template>
 | |
| 
 | |
| <script setup lang="ts">
 | |
| import './assets/style.scss'
 | |
| import './assets/print.css'
 | |
| import { RouterView } from 'vue-router'
 | |
| import { useContractorsStore } from '@/stores/contractors.store'
 | |
| import { useCategoriesStore } from '@/stores/categories.store'
 | |
| 
 | |
| // const categoriesStore = useCategoriesStore();
 | |
| // await categoriesStore.fetchCategories();
 | |
| </script>
 | |
| 
 | |
| <style>
 | |
| @media screen and (min-width: 500px) {
 | |
|   .box {
 | |
|     --bulma-box-padding: 1.5rem;
 | |
|   }
 | |
| }
 | |
| @media screen and (max-width: 500px) {
 | |
|   .box {
 | |
|     --bulma-box-padding: 0.75rem;
 | |
|   }
 | |
| }
 | |
| </style>
 |