This commit is contained in:
mertsincan 2024-02-11 23:47:53 +00:00
parent 5d9ac9917d
commit 00c891a3e2
5 changed files with 11 additions and 5 deletions

View file

@ -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 === ''