컴포넌트를 막 사용하면 안되는 이유!먼저 지난 번에 배운대로 Modal을 Component로 만들었다.template> div class="black-bg" v-if="modalOpen == true"> div class="white-bg"> h4>{{ 원룸들[누름].title }}h4> p>>{{ 원룸들[누름].content }}p> p>>{{ 원룸들[누름].price }}원p> button @click="modalOpen = false">닫기button> div> div>template>script>export default { name: 'Modal_',}script>style>style>--> 여기서 문제는 '원룸들', '누..