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