i have a problem. I want to pass a html/vuetify tag component to a reusable component like slot
example :
child
<template>
<v-overlay" z-index="999">
<v-container>
<v-card>
<v-container>
<self-building-square-spinner/>
{{ children }} <-- data from child will replace in here
</v-col>
</v-container>
</v-card>
</v-container>
</v-overlay>
</template>
parent
openModal({
show: true,
children: (
<div>
<h1> Please Wait . . . </h1>
</div>
),
})
how to implement it?. I used props, but still not work