Textarea Property
The textarea property is for multi-line strings. Use it for longer content like descriptions, messages, or paragraphs.
Description
Optional Parameters
placeholder
Show hint text in the input field when it's empty.
Catalog.register('Sample', {
component: Sample,
props: {
description: {
label: 'Description',
type: 'textarea',
placeholder: 'Type something...',
},
},
});