mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-11-03 18:53:17 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			257 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			257 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <DefaultLayout />
 | 
						|
</template>
 | 
						|
 | 
						|
<script setup lang="ts">
 | 
						|
import DefaultLayout from "@/components/Layout/DefaultLayout.vue";
 | 
						|
import { useGlobalI18n } from "~/composables/use-global-i18n";
 | 
						|
 | 
						|
useGlobalI18n(); // ensure i18n is initialized
 | 
						|
</script>
 |