1. 程式人生 > >vue中methods一個方法呼叫另外一個方法

vue中methods一個方法呼叫另外一個方法

vue在同一個元件內;

methods中的一個方法呼叫methods中的另外一個方法

可以在呼叫的時候 this.$options.methods.test2();

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

感謝分享https://blog.csdn.net/zhangjing1019/article/details/77942923