[Vuejs]-Why v-on:change does not work but v-on:input works in vuexy template?

0👍

v-model = :value + @input;

This is caused by the implementation of v-select components

The input event should have been triggered internally, but the change event was not triggered

Leave a comment