📍Components
- 자식 컴포넌트를 만들고 부모 컴포넌트에서 import해서 사용할 수 있다
- 자식 컴포넌트
<!-- ChildComp.vue -->
<template>
<h2>A Child Component!</h2>
</template>
- 부모 컴포넌트
<!-- App.vue -->
<script setup>
import ChildComp from './ChildComp.vue'
</script>
<template>
<ChildComp />
</template>