HTML:
<div id="app">
<button @click="inc">Counter</button>
<h1>{{ counter }}</h1>
</div>
JS:
const view = new Vue({
el: '#app',
data: {
counter: 0
},
methods: {
inc: () => {
++this.counter
}
}
})
点击按钮时收到Cannot read property 'counter' of undefined
。对我来说,这应该有用,但我是Vue的新手并且想知道我是否遗漏了一些明显的东西!