[Vuejs]-Bind Vue component to vue instance

1👍

It is because your component isn’t firing the keyup event.

Change v-on:keyup="change" to v-on:input="change"

Or in your component add this to the textarea :
@keyup="$emit('keyup')"

Leave a comment