2
0
mirror of https://github.com/tenrok/vue-select.git synced 2026-05-17 02:29:37 +03:00

fix on-change example

This commit is contained in:
Sergey Kojin
2017-10-06 20:20:18 +03:00
committed by GitHub
parent 70b6c1289a
commit caea72ec22
+1 -1
View File
@@ -10,7 +10,7 @@ This is very useful when integrating with Vuex, as it will allow your to trigger
</div>
```html
<v-select v-on:change="consoleCallback" :options="countries"></v-select>
<v-select :on-change="consoleCallback" :options="countries"></v-select>
```
```js