mirror of
https://github.com/IT4Change/ocelot-website-hire.git
synced 2025-12-13 05:15:49 +00:00
14 lines
170 B
Vue
14 lines
170 B
Vue
<script setup>
|
|
import NavbarTop from './components/NavbarTop.vue'
|
|
</script>
|
|
<template>
|
|
<div id="app">
|
|
<NavbarTop />
|
|
|
|
<router-view />
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|