vue在同一个组件内;vue
methods中的一个方法调用methods中的另一个方法bash
能够在调用的时候 this.$options.methods.test2();app
一样适用于:this.$options.computedui
示例:this
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的方法 } }复制代码