这是官网的代码
<div id="app-2">
<span v-bind:title="message">
Hover your mouse over me for a few seconds to see my dynamically bound title!
</span>
</div>
var app2 = new Vue({
el: '#app-2',
data: {
message: 'You loaded this page on ' + new Date()
}
})
你再次打开浏览器的控制台输入 app2.message = 'some new message',你就会再一次看到这个绑定了title属性的HTML已经进行了更新。
问题是vue-cil下面的.vue文件并没有var,如果我想像通过控制台来测试响应式那我该怎么做?
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…