mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-08-03 20:45:23 +02:00
14 lines
289 B
Vue
14 lines
289 B
Vue
|
|
||
|
<template>
|
||
|
<DefaultLayout />
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts">
|
||
|
import { defineComponent } from "@nuxtjs/composition-api";
|
||
|
import DefaultLayout from "@/components/Layout/DefaultLayout.vue";
|
||
|
|
||
|
export default defineComponent({
|
||
|
components: { DefaultLayout },
|
||
|
});
|
||
|
</script>
|