1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-08-05 05:25:26 +02:00

remove default password and header (#984)

This commit is contained in:
Hayden 2022-02-20 15:14:31 -09:00 committed by GitHub
parent 602f248541
commit 5310a94478
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 3 deletions

View file

@ -0,0 +1,19 @@
<template>
<v-app dark>
<TheSnackbar />
<v-main>
<v-scroll-x-transition>
<Nuxt />
</v-scroll-x-transition>
</v-main>
</v-app>
</template>
<script lang="ts">
import { defineComponent } from "@nuxtjs/composition-api";
import TheSnackbar from "~/components/Layout/TheSnackbar.vue";
export default defineComponent({
components: { TheSnackbar },
});
</script>