生命周期mounted其实可以换成created吧,本例用created也行
var vm=new Vue({
el:"#container",
data:{
title:"Hello vue"
},
filters:{
},
created:function () {
this.creatView();
},
methods:{
creatView:function () {
this.title="vue Hello"
}
}
})