mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-08 16:37:15 +00:00
16 lines
334 B
JavaScript
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
|
|
}
|
|
};
|