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:
parent
602f248541
commit
5310a94478
2 changed files with 27 additions and 3 deletions
19
frontend/layouts/blank.vue
Normal file
19
frontend/layouts/blank.vue
Normal 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>
|
Loading…
Add table
Add a link
Reference in a new issue