scrimba
Vue.js for Beginners
Vue.js Tutorial: v-on, event listeners and methods
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Vue.js Tutorial: v-on, event listeners and methods
AboutCommentsNotes
Vue.js Tutorial: v-on, event listeners and methods
Expand for more info
index.html
run
preview
console
<div id="app">
<p>{{ message }}</p>
<button v-on:click="reverseMessage">Reverse Message</button>
</div>
Console
Preview
280×340 (100%)
index.html
-2:10