vue中methods互相調用的方法


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'
        })
      }
    }

  


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM