PortIO/resources/js/App.vue

14 lines
208 B
Vue
Raw Normal View History

2023-03-14 14:33:06 +00:00
<template>
2023-07-30 15:52:39 +00:00
<div>
<Nav/>
</div>
<div>
<Layout/>
</div>
2023-03-14 14:33:06 +00:00
</template>
<script setup>
2023-07-30 15:52:39 +00:00
import Layout from './components/Layout.vue'
import Nav from './components/Nav.vue'
2023-03-14 14:33:06 +00:00
</script>