Skip to content

Commit 9e340b5

Browse files
authored
Merge pull request sagalbot#332 from skojin/on-change-fix
on-change docs fix
2 parents f26822c + d29f697 commit 9e340b5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/components/Examples.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@
122122
</div>
123123

124124
<div class="col-md-6">
125-
<pre><v-code lang="markup">&#x3C;v-select v-on:change=&#x22;consoleCallback&#x22; :options=&#x22;countries&#x22;&#x3E;&#x3C;/v-select&#x3E;</v-code></pre>
125+
<pre><v-code lang="markup">&#x3C;v-select :on-change=&#x22;consoleCallback&#x22; :options=&#x22;countries&#x22;&#x3E;&#x3C;/v-select&#x3E;</v-code></pre>
126126
<pre><v-code lang="javascript">methods: {
127127
consoleCallback(val) {
128128
console.dir(JSON.stringify(val))

docs/md/OnChange.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This is very useful when integrating with Vuex, as it will allow your to trigger
1010
</div>
1111

1212
```html
13-
<v-select v-on:change="consoleCallback" :options="countries"></v-select>
13+
<v-select :on-change="consoleCallback" :options="countries"></v-select>
1414
```
1515

1616
```js

0 commit comments

Comments
 (0)