Text Property
A text property is a plain string, used for titles, labels, names, or any short text.
Title
Optional Parameters
placeholder
Show hint text in the input field when it's empty.
Catalog.register('Sample', {
component: Sample,
props: {
title: {
label: 'Title',
type: 'text',
placeholder: 'Type something...',
},
},
});