Bootstrap

vue methods 方法中 方法 调用 另一个方法

方法1:

test3:function(){
            this.$options.methods.test2();//在test3中调用test2的方法

            this.test2();//也可直接调用
      }

方法2:

(1)JS中定义函数,调用方法

function test2(){
   vm.test2();
}

(2)在VUE的方法内调用上面定义的方法

test3:function(){
      test2();//在test3中调用test2的方法
 }

 

;