matiastucci/vue-input-tag

Change event

MartinKravec opened this issue · 2 comments

Version of Vue I'm using?: 2.5.16
Version of vue-input-tag I'm using?: 1.0.3

Hello,

is it possible to set onchange event? How?
This event will not fire on change.

<input-tag :tags.sync="statistics.values" @change="refreshStatistics"></input-tag>

Thanks

It will be great if we can emit some events which system can do for post process operations.

You can do this: <input-tag :tags="tagsArray" @update:tags="refreshStatistics"></input-tag>