mirror of
https://github.com/mmahdium/TBW.git
synced 2025-12-21 05:03:55 +01:00
13 lines
180 B
Vue
13 lines
180 B
Vue
<script setup lang="ts">
|
|
import '@/style.css'
|
|
import NavBar from './components/NavBar.vue'
|
|
</script>
|
|
|
|
<template>
|
|
<NavBar />
|
|
|
|
<RouterView />
|
|
</template>
|
|
|
|
<style scoped></style>
|