23 lines
498 B
JavaScript
23 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
|
|
}
|
|
};
|