1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-07-22 14:49:40 +02:00

Feature/update login UI (#716)

* cleanup signin UI

* add timeout

Co-authored-by: Hayden <hay-kot@pm.me>
This commit is contained in:
Hayden 2021-10-02 12:18:01 -08:00 committed by GitHub
parent 4bdba9f3af
commit bd8882ec44
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 31 additions and 26 deletions

View file

@ -1,8 +1,6 @@
<template>
<v-app dark>
<TheSnackbar />
<AppHeader :menu="false"> </AppHeader>
<v-main>
<v-scroll-x-transition>
<Nuxt />
@ -16,11 +14,10 @@
<script lang="ts">
import { defineComponent } from "@nuxtjs/composition-api";
import AppFooter from "@/components/Layout/AppFooter.vue";
import AppHeader from "@/components/Layout/AppHeader.vue";
import TheSnackbar from "~/components/Layout/TheSnackbar.vue";
export default defineComponent({
components: { AppHeader, AppFooter, TheSnackbar },
components: { AppFooter, TheSnackbar },
setup() {
return {};
},