frontend/src/App.vue

13 lines
158 B
Vue
Raw Normal View History

2025-09-09 23:19:17 +03:00
<script setup>
2025-09-12 23:48:38 +03:00
import NavBar from '@/components/Navbar/NavBar.vue'
2025-09-09 23:19:17 +03:00
</script>
<template>
2025-09-12 23:48:38 +03:00
<NavBar />
2025-09-09 23:19:17 +03:00
<router-view />
</template>
2025-09-09 23:19:17 +03:00
<style scoped>
2025-09-09 23:19:17 +03:00
</style>