Fixed #2522 - InputText and Textarea duplicating custom class(es) in DOM element
parent
769c98fbce
commit
5e0acc7cc2
|
@ -5,6 +5,7 @@
|
|||
<script>
|
||||
export default {
|
||||
name: 'InputText',
|
||||
inheritAttrs: false,
|
||||
emits: ['update:modelValue'],
|
||||
props: {
|
||||
modelValue: null
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
<script>
|
||||
export default {
|
||||
name: 'Textarea',
|
||||
inheritAttrs: false,
|
||||
emits: ['update:modelValue'],
|
||||
props: {
|
||||
modelValue: null,
|
||||
|
@ -35,7 +36,7 @@ export default {
|
|||
}
|
||||
},
|
||||
onInput(event) {
|
||||
if (this.autoResize) {
|
||||
if (this.autoResize) {
|
||||
this.resize();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue