lollms-webui/web/src/App.vue

31 lines
621 B
Vue
Raw Normal View History

2023-05-02 22:53:27 +02:00
<template>
<div
class="flex flex-col h-screen max-h-screen font-sans bg-bg-light text-slate-950 dark:bg-bg-dark dark:text-slate-50">
<TopBar />
<div class="flex overflow-hidden flex-grow">
<!-- VIEW CONTAINER -->
<RouterView v-slot="{ Component }">
<KeepAlive>
<component :is="Component" />
</KeepAlive>
</RouterView>
</div>
<!-- FOOTER -->
<!-- <Footer /> -->
2023-05-25 17:54:27 +03:00
2023-05-02 22:53:27 +02:00
</div>
</template>
<script setup>
import { RouterView } from 'vue-router'
import TopBar from './components/TopBar.vue';
import Footer from './components/Footer.vue';
2023-05-03 00:02:00 +02:00
2023-05-02 22:53:27 +02:00
</script>