safetwitch/src/App.vue

13 lines
229 B
Vue
Raw Normal View History

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-03-07 01:19:05 -05:00
</script>
<template>
<navbar-item></navbar-item>
2023-03-18 13:49:02 -04:00
2023-03-07 01:19:05 -05:00
<Suspense>
<RouterView />
</Suspense>
2023-03-18 13:49:02 -04:00
</template>