diff --git a/components/lib/inputtext/InputText.vue b/components/lib/inputtext/InputText.vue index f66a09a06..5201d365d 100755 --- a/components/lib/inputtext/InputText.vue +++ b/components/lib/inputtext/InputText.vue @@ -8,10 +8,13 @@ import BaseInputText from './BaseInputText.vue'; export default { name: 'InputText', extends: BaseInputText, + inheritAttrs: false, emits: ['update:modelValue'], methods: { getPTOptions(key) { - return this.ptm(key, { + const _ptm = key === 'root' ? this.ptmi : this.ptm; + + return _ptm(key, { context: { filled: this.filled, disabled: this.$attrs.disabled || this.$attrs.disabled === '' diff --git a/components/lib/knob/Knob.vue b/components/lib/knob/Knob.vue index c79f4eefa..b0cfe0430 100644 --- a/components/lib/knob/Knob.vue +++ b/components/lib/knob/Knob.vue @@ -1,5 +1,5 @@