primevue-mirror/api-generator/components/inputtext.js
2023-05-05 15:53:35 +03:00

22 lines
498 B
JavaScript

const InputTextProps = [
{
name: 'modelValue',
type: 'any',
default: 'null',
description: 'Value of the component.'
},
{
name: 'pt',
type: 'any',
default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.'
}
];
module.exports = {
inputtext: {
name: 'InputText',
description: 'InputText renders a text field to enter data.',
props: InputTextProps
}
};