A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

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();一个方法调用另外一个方法;

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马