Merge pull request #2560 from tugcekucukoglu/master
Fixed #2522 - InputText and Textarea duplicating custom class(es) in …pull/2561/head
commit
d21bdcb103
|
@ -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