vue中methods一个方法调用另外一个方法
转摘自:https://blog.csdn.net/zhangjing1019/article/details/77942923/vue在同一个组件内;methods中的一个方法调用methods中的另外一个方法可以在调用的时候 this.$options.methods.test2();例:new Vue({el: '#app',data: {...
·
转摘自:https://blog.csdn.net/zhangjing1019/article/details/77942923/
vue在同一个组件内;
methods中的一个方法调用methods中的另外一个方法
可以在调用的时候 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的方法
}
}
更多推荐
已为社区贡献10条内容
所有评论(0)