I am following vue.js tutorial - method event handlers
<button v-on:click='handler'>handle this</button>
.
.
.
methods: {
handler: function (event) {
console.log(JSON.stringify(event));
}}
However when I try to display the event all i get is {"isTrusted":true}
When I tried console.log(event.target.tagName) I get an empty string.
I think I am supposed to get Button.

argumentsinside handler to see what's coming in?