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

Posted 蔚京霖

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue methods 方法中 方法 调用 另一个方法。相关的知识,希望对你有一定的参考价值。

vue在同一个组件内;

methods中的一个方法调用methods中的另外一个方法。

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

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的方法
        }
  }
})

 

以上是关于vue methods 方法中 方法 调用 另一个方法。的主要内容,如果未能解决你的问题,请参考以下文章

vue methods中一个函数调用另外一个函数

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

vue的mounted中调用methods里面的方法报错说方法未定义?

js文件调用vue里methods的方法

在vue开发中会遇到methods方法里有一个函数嵌套另一个函数,最内层函数this取不到data数据,该怎么解决?

在vue开发中会遇到methods方法里有一个函数嵌套另一个函数,最内层函数this取不到data数据,该怎么解决?