13e157827c
* fix disable button * add backend env for restricting registration * update state management * add allow_signup to app info * move allow_signup to backend only * cleanup docker-compose * potential darkmode fix * fix missing variable * add banner on login page * use random bools for tests * fix initial state bug * fix state reset
39 lines
922 B
Vue
39 lines
922 B
Vue
<template>
|
|
<v-app dark>
|
|
<TheSnackbar />
|
|
|
|
<v-banner v-if="isDemo" sticky>
|
|
<div class="text-center">
|
|
<b> This is a Demo for version: {{ version }} </b> | Username: changeme@email.com | Password: demo
|
|
</div>
|
|
</v-banner>
|
|
|
|
<v-main>
|
|
<v-scroll-x-transition>
|
|
<Nuxt />
|
|
</v-scroll-x-transition>
|
|
</v-main>
|
|
</v-app>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { computed, defineComponent } from "@nuxtjs/composition-api";
|
|
import TheSnackbar from "~/components/Layout/TheSnackbar.vue";
|
|
import { useAppInfo } from "~/composables/api";
|
|
export default defineComponent({
|
|
components: { TheSnackbar },
|
|
setup() {
|
|
const appInfo = useAppInfo();
|
|
|
|
const isDemo = computed(() => appInfo?.value?.demoStatus || false);
|
|
|
|
const version = computed(() => appInfo?.value?.version || "unknown");
|
|
|
|
return {
|
|
appInfo,
|
|
isDemo,
|
|
version,
|
|
};
|
|
},
|
|
});
|
|
</script>
|