PortIO/resources/js/App.vue

14 lines
198 B
Vue
Raw Normal View History

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