下面我就為大家分享一篇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的方法 } } })
上面是我整理給大家的,希望今後會對大家有幫助。
相關文章:
以上是vue中如何實作methods方法之間調用的詳細內容。更多資訊請關注PHP中文網其他相關文章!