12 lines
226 B
Vue
12 lines
226 B
Vue
![]() |
<script setup lang="ts">
|
||
|
import { RouterView } from 'vue-router'
|
||
|
import NavbarItem from './components/Navbar.vue'
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<navbar-item></navbar-item>
|
||
|
|
||
|
<Suspense>
|
||
|
<RouterView />
|
||
|
</Suspense>
|
||
|
</template>
|