Skip to content

Commit bafc873

Browse files
authored
Merge pull request sagalbot#110 from tarsislima/fixed-onchange-example
Fixed syntax of example on-change callback
2 parents df5827d + dac9518 commit bafc873

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/components/Examples.vue

Lines changed: 2 additions & 2 deletions
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 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))
@@ -188,4 +188,4 @@
188188
}
189189
}
190190
}
191-
</script>
191+
</script>

0 commit comments

Comments
 (0)