vue在同一个组件内;方法之间经常需要互相调用。

methods中的一个方法如何调用methods中的另外一个方法呢?

可以在调用的时候使用  this.$options.methods.test2();

new Vue({

     el: '#app',

     data: {

         test:111,

     },

     methods: {

          test1:function(){

              alert(this.test)

         },

         test2:function(){

             alert("this is test2")

             alert(this.test) //test3调用时弹出undefined

        },

        test3:function(){

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

        }

    }

})

 

 

相关文章:

  • 2021-09-06
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-05-24
猜你喜欢
  • 2022-12-23
  • 2022-01-11
  • 2021-08-27
  • 2021-07-28
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案