Directive v-on Vue
v-on Vue example
by Megi93
HTML
<!-- Change Title by click the button -->
<div id="app">
<button :click="changeTitle()">Change Title</button>
<p> {{ title }}</p>
</div>
JavaScript
new Vue({
el: '#app',
data: {
title: 'Hello World!'
},
methods: {
changeTitle() {
this.title = 'New title'
}
}
})