Funny…I was hoping for less classy components…
Avi Block
2
Why? I find it difficult to understand where is the context in object-declaration like that:
new Vue({
el: '#app',
data: {
name: ''
},
methods: {
logName() {
console.log(this.name);
}
}
});In js expected that `this` will references to the `methods`