|
Lines 15-20
Link Here
|
| 15 |
:size="attr.size" |
15 |
:size="attr.size" |
| 16 |
:maxlength="attr.maxlength" |
16 |
:maxlength="attr.maxlength" |
| 17 |
:disabled="disabled" |
17 |
:disabled="disabled" |
|
|
18 |
:clearable=" |
| 19 |
attr.clearable !== undefined ? attr.clearable : undefined |
| 20 |
" |
| 18 |
@update:modelValue="checkForInputError()" |
21 |
@update:modelValue="checkForInputError()" |
| 19 |
/> |
22 |
/> |
| 20 |
</template> |
23 |
</template> |
|
Lines 25-30
Link Here
|
| 25 |
:placeholder="attr.placeholder || attr.label" |
28 |
:placeholder="attr.placeholder || attr.label" |
| 26 |
:required="attr.required ? true : false" |
29 |
:required="attr.required ? true : false" |
| 27 |
:disabled="disabled" |
30 |
:disabled="disabled" |
|
|
31 |
:clearable=" |
| 32 |
attr.clearable !== undefined ? attr.clearable : undefined |
| 33 |
" |
| 28 |
@update:modelValue="checkForInputError()" |
34 |
@update:modelValue="checkForInputError()" |
| 29 |
/> |
35 |
/> |
| 30 |
</template> |
36 |
</template> |
|
Lines 37-42
Link Here
|
| 37 |
:placeholder="attr.placeholder || attr.label" |
43 |
:placeholder="attr.placeholder || attr.label" |
| 38 |
:required="attr.required ? true : false" |
44 |
:required="attr.required ? true : false" |
| 39 |
:disabled="disabled" |
45 |
:disabled="disabled" |
|
|
46 |
:clearable=" |
| 47 |
attr.clearable !== undefined ? attr.clearable : undefined |
| 48 |
" |
| 40 |
@update:modelValue="checkForInputError()" |
49 |
@update:modelValue="checkForInputError()" |
| 41 |
/> |
50 |
/> |
| 42 |
</template> |
51 |
</template> |
| 43 |
- |
|
|