Emit change & input events from mdTextarea

This commit is contained in:
Jan Van Bruggen 2016-10-20 11:48:26 -07:00
parent 88b5157199
commit b474af9fd8

View file

@ -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() {