-1
Child:
<template>
<div>
I'm CHILD
<slot></slot>
</div>
</template>
Parent:
<template>
<div>
<Child>
<span>I'm parent</span>
</Child>
</div>
</template>
Source:stackexchange.com
-1
Child:
<template>
<div>
I'm CHILD
<slot></slot>
</div>
</template>
Parent:
<template>
<div>
<Child>
<span>I'm parent</span>
</Child>
</div>
</template>