23 lines
501 B
JavaScript
23 lines
501 B
JavaScript
const TextareaProps = [
|
|
{
|
|
name: "modelValue",
|
|
type: "any",
|
|
default: "null",
|
|
description: "Value of the component."
|
|
},
|
|
{
|
|
name: "autoResize",
|
|
type: "boolean",
|
|
default: "false",
|
|
description: "When present, height of textarea changes as being typed."
|
|
}
|
|
];
|
|
|
|
module.exports = {
|
|
textarea: {
|
|
name: "Textarea",
|
|
description: "Textarea is a multi-line text input element.",
|
|
props: TextareaProps
|
|
}
|
|
};
|