vue-bootstrap-select icon indicating copy to clipboard operation
vue-bootstrap-select copied to clipboard

how to implement v-on:change="" ?

Open arisdevx opened this issue 5 years ago • 1 comments

when i create the new function like checkData() using onChange method, but not effect

arisdevx avatar Oct 14 '19 07:10 arisdevx

When looking at the code I see that an event is emitted called input. So you should be able to catch that event by adding this:

<v-select @input="checkData" />

And your checkData() function should look similar to this:

checkData(value) {
    console.log(value)
  }

ddlaat avatar Oct 22 '19 13:10 ddlaat