码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2018-09-20 21:18:06      阅读:905      评论:0      收藏:0      [点我收藏+]

标签:style   lang   define   class   ons   cti   一个   nbsp   调用   

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 方法中 方法 调用 另一个方法。

标签:style   lang   define   class   ons   cti   一个   nbsp   调用   

原文地址:https://www.cnblogs.com/yuerdong/p/9683142.html

(6)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!