Vue在同一组件中,methods中的一个方法调用methods中的另一个方法

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
new Vue({
 el: '#app',
 data: {
  test:111,
 },
 methods: {
  test1:function(){
   alert(this.test)
  },
  test2:function(){
   alert("this is test2")
   alert(this.test3) //test3调用时弹出undefined
  },
  test3:function(){
   this.$options.methods.test2();//在test3中调用test2的方法
  }
 }
})
this.$options.methods.test2(); 一个方法调用另外一个方法;

猜你喜欢

转载自blog.csdn.net/weixin_38098192/article/details/80307728