2023-03-07 01:19:05 -05:00
|
|
|
<script setup lang="ts">
|
|
|
|
import { RouterView } from 'vue-router'
|
2023-03-18 13:49:02 -04:00
|
|
|
import NavbarItem from './components/NavbarView.vue'
|
2023-06-13 14:51:35 -04:00
|
|
|
import DevWarning from './components/DevWarning.vue'
|
|
|
|
|
|
|
|
const dev = import.meta.env.DEV
|
2023-03-07 01:19:05 -05:00
|
|
|
</script>
|
|
|
|
|
2023-05-18 21:51:11 -04:00
|
|
|
<template class="bg-ctp-base h-full">
|
2023-06-13 14:51:35 -04:00
|
|
|
<dev-warning v-if="dev"></dev-warning>
|
2023-03-07 01:19:05 -05:00
|
|
|
<navbar-item></navbar-item>
|
2023-03-18 13:49:02 -04:00
|
|
|
|
2023-03-07 01:19:05 -05:00
|
|
|
<Suspense>
|
2023-04-20 09:59:45 -04:00
|
|
|
<RouterView :key="$route.fullPath" />
|
2023-03-07 01:19:05 -05:00
|
|
|
</Suspense>
|
2023-03-18 13:49:02 -04:00
|
|
|
</template>
|