为什么功能没有实现
new Vue({ el:"#app1", data:{ title: "hello world" }, // filters:{ // // }, mounted:function(){ this.cartView(); }, methods:{ cartView:function(){ this.title="vue hello"; } } });
<div id="app1">{{title}}</div>
我按照老师的步骤写的,为什么在页面中没有显示vue hello