">
<template>
<commonPopLayer :pPopTitle="pPopTitle">
<template #body>
<div>큐알코드</div>å
</template>
<template #actions>
<div>
<button @click="props.pClosePop">닫기</button>
</div>
</template>
</commonPopLayer>
</template>
이것만 봐도 대체 이 태그들이 뭔가 싶을 것이다…
#body등에 주목해야 한다. 이건 사실 radixui가 아니라 vue의 슬롯 개념임.
부모 컴포넌트에서 #xxx
으로 이름붙여서 자식 컴포넌트 내부에서 사용하면, 자식 컴포넌트의 해당 이름이 붙은 `<slot name = xxx>`` 에 대신 들어가는 편리한 기능이 있다…