20 lines
658 B
Vue
20 lines
658 B
Vue
<script lang="ts" setup>
|
|
import { RouterView } from "vue-router";
|
|
import HeaderBar from "src/modules/shared/components/navigation/header-bar.vue";
|
|
import FooterBar from "src/modules/shared/components/navigation/footer-bar.vue";
|
|
import RightDrawer from "src/modules/shared/components/navigation/right-drawer.vue";
|
|
import ChatbotPage from "src/modules/chatbot/pages/chatbot-page.vue";
|
|
</script>
|
|
|
|
<template>
|
|
<q-layout view="hHh lpR fFf">
|
|
<HeaderBar />
|
|
<RightDrawer />
|
|
<q-page-container>
|
|
<router-view class="q-pa-sm bg-secondary" />
|
|
<ChatbotPage />
|
|
</q-page-container>
|
|
<FooterBar />
|
|
</q-layout>
|
|
</template>
|