laravel-template/resources/js/App.vue

14 lines
222 B
Vue
Raw Normal View History

2023-11-01 02:56:35 +00:00
<template>
<div>
<Nav />
</div>
<div>
<Layout />
</div>
</template>
<script setup lang="ts">
import Layout from "./components/Layout.vue";
import Nav from "./components/Nav.vue";
</script>