18 lines
186 B
Vue
18 lines
186 B
Vue
<script setup lang="ts">
|
|
import Person from "@/components/Person.vue";
|
|
</script>
|
|
|
|
<template>
|
|
<header>
|
|
|
|
</header>
|
|
|
|
<main>
|
|
<Person />
|
|
</main>
|
|
</template>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|