safetwitch/src/App.vue
ngn 9b017e6153
Some checks failed
Build and publish the docker image / build (push) Failing after 1m1s
get rid of the footer
Signed-off-by: ngn <ngn@ngn.tf>
2025-01-21 11:06:01 +03:00

20 lines
532 B
Vue

<script setup lang="ts">
import { RouterView } from 'vue-router'
import NavbarItem from './components/NavbarView.vue'
import DevWarning from './components/DevWarning.vue'
import { getTheme } from '@/settingsManager'
const dev = import.meta.env.DEV
</script>
<template>
<dev-warning v-if="dev"></dev-warning>
<div :class="getTheme()" class="flex flex-col justify-between min-h-[100vh] bg-primary">
<navbar-item></navbar-item>
<Suspense>
<RouterView :key="$route.fullPath" />
</Suspense>
</div>
</template>