14 lines
222 B
Vue
14 lines
222 B
Vue
<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>
|