35 lines
657 B
Vue
35 lines
657 B
Vue
<script>
|
|
import BaseComponent from 'primevue/basecomponent';
|
|
|
|
const classes = {
|
|
root: ({ instance, props }) => [
|
|
'p-inputtext p-component',
|
|
{
|
|
'p-filled': instance.filled,
|
|
'p-inputtext-sm': props.size === 'small',
|
|
'p-inputtext-lg': props.size === 'large'
|
|
}
|
|
]
|
|
};
|
|
|
|
export default {
|
|
name: 'BaseInputText',
|
|
extends: BaseComponent,
|
|
props: {
|
|
modelValue: null,
|
|
size: {
|
|
type: String,
|
|
default: null
|
|
}
|
|
},
|
|
css: {
|
|
classes
|
|
},
|
|
provide() {
|
|
return {
|
|
$parentInstance: this
|
|
};
|
|
}
|
|
};
|
|
</script>
|