14 lines
198 B
Vue
14 lines
198 B
Vue
|
<template>
|
||
|
<div>
|
||
|
<Nav />
|
||
|
</div>
|
||
|
<div>
|
||
|
<Layout />
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script setup>
|
||
|
import Layout from './components/Layout.vue'
|
||
|
import Nav from './components/Nav.vue'
|
||
|
</script>
|