I want create component with textarea and pass data inside that like
<c-textarea> hello world </c-textarea>
but the classic <slot/>
tag not work inside of textarea
what's simplest and cleanest alternative
<template>
<textarea><slot/></textarea>
</template>
in Vue.js 3