mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-10-27 08:14:30 -04: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>
|