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>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
name: 'InputText',
|
name: 'InputText',
|
||||||
|
inheritAttrs: false,
|
||||||
emits: ['update:modelValue'],
|
emits: ['update:modelValue'],
|
||||||
props: {
|
props: {
|
||||||
modelValue: null
|
modelValue: null
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
name: 'Textarea',
|
name: 'Textarea',
|
||||||
|
inheritAttrs: false,
|
||||||
emits: ['update:modelValue'],
|
emits: ['update:modelValue'],
|
||||||
props: {
|
props: {
|
||||||
modelValue: null,
|
modelValue: null,
|
||||||
|
|
Loading…
Reference in New Issue