primevue-mirror/api-generator/components/inputtext.js

17 lines
334 B
JavaScript
Raw Normal View History

2021-05-12 09:35:29 +00:00
const InputTextProps = [
{
name: "modelValue",
type: "any",
default: "null",
description: "Value of the component."
}
];
module.exports = {
inputtext: {
name: "InputText",
description: "InputText renders a text field to enter data.",
props: InputTextProps
}
};