lollms-webui/web/src/App.vue

31 lines
693 B
Vue
Raw Normal View History

2023-05-02 20:53:27 +00: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 /> -->
</div>
</template>
<script setup>
import { RouterView } from 'vue-router'
import TopBar from './components/TopBar.vue';
import Footer from './components/Footer.vue';
2023-05-02 22:02:00 +00:00
2023-05-02 20:53:27 +00:00
</script>
<!-- <script src="../node_modules/feather-icons/dist/feather"></script> -->