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

23 lines
498 B
JavaScript
Raw Normal View History

const InputTextProps = [
{
2022-09-14 14:26:41 +00:00
name: 'modelValue',
type: 'any',
default: 'null',
description: 'Value of the component.'
2023-05-05 12:53:35 +00:00
},
{
name: 'pt',
type: 'any',
default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.'
}
];
module.exports = {
inputtext: {
2022-09-14 14:26:41 +00:00
name: 'InputText',
description: 'InputText renders a text field to enter data.',
props: InputTextProps
}
};