📅  最后修改于: 2022-03-11 15:03:44.938000             🧑  作者: Mango
vm=new Vue({
el:"#app",
mounted:function(){
this.method1() //method1 will execute at pageload
},
methods:{
method1:function(){
/* your logic */
}
},
})