mirror of
https://github.com/Hopiu/vue-material.git
synced 2026-05-11 08:43:10 +00:00
Emit change & input events from mdTextarea
This commit is contained in:
parent
88b5157199
commit
b474af9fd8
1 changed files with 2 additions and 0 deletions
|
|
@ -95,6 +95,8 @@
|
|||
onInput() {
|
||||
manageHasValueClass(this.$el.value, this.parentClasses);
|
||||
this.$parent.inputLength = this.$el.value.length;
|
||||
this.$emit('change', this.$el.value);
|
||||
this.$emit('input', this.$el.value);
|
||||
}
|
||||
},
|
||||
mounted() {
|
||||
|
|
|
|||
Loading…
Reference in a new issue