2
0
mirror of https://github.com/tenrok/vue-select.git synced 2026-06-04 06:32:23 +03:00
Files
vue-select/docs/Advanced/Vuex.md
T
Jeff 018f3f7697 - add docs script to serve docs
- WIP updates to docs
- add vuejs theme
2017-10-01 13:22:50 -07:00

516 B

Change Event Vuex Compatibility

vue-select provides a change event. This function is passed the currently selected value(s) as it's only parameter.

This is very useful when integrating with Vuex, as it will allow your to trigger an action to update your vuex state object. Choose a callback and see it in action.

<v-select v-on:change="consoleCallback" :options="countries"></v-select>
methods: {
  consoleCallback(val) {
    console.dir(JSON.stringify(val))
  },
}