时间:2021-07-01 10:21:17 帮助过:18人阅读
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的方法 } } })
上面是我整理给大家的,希望今后会对大家有帮助。
相关文章:
在vue中使用ref 让父组件调用子组件
如何实现web前端页面生成exe
如何实现ajax前台后台跨域请求
以上就是vue中如何实现methods方法之间调用的详细内容,更多请关注Gxl网其它相关文章!