a:function(goods) {
this.aa= [];
this.bb= 0;
this.cc= 0;
},
b:function(){
if(this.bbb!= 0){
this.aa= [];
this.bb= 0;
this.cc= 0;
this.$message({
message:'結賬成功!',
type:'success'
})
}
}
上面代碼塊里a方法里的代碼和b方法里面的代碼一模一樣,可以使用
this.$options.methods.a.bind(this)();
來替換
b:function(){
if(this.bbb!= 0){
this.$options.methods.a.bind(this)();
this.$message({
message:'結賬成功!',
type:'success'
})
}
}
