1
0
Fork 0
mirror of https://github.com/primefaces/primevue.git synced 2025-05-08 16:37:15 +00:00
primevue-mirror/api-generator/components/inputtext.js
Tuğçe Küçükoğlu 8681911998 Fixed Fixed
2021-05-12 12:35:29 +03:00

16 lines
334 B
JavaScript

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
}
};