Vue:父组件调用子组件内函数的方法
参考网址:https://blog.csdn.net/a5534789/article/details/53415201Demo:1、新建一个空的vue对象,命名为eventHub;2、在父页面 hsi.vue 使用this.root.eventHub.root.eventHub.root.eventHub.emit(‘function1’,’parame’);随...
·
方法一:
参考网址:https://blog.csdn.net/a5534789/article/details/53415201
1、新建一个空的vue对象,命名为eventHub;
data:{
eventHub:new Vue()
},
2、在父页面 hsi.vue 使用
this.$root.eventHub.$emit("function1","parame");
随意声明一个方法 function1,加上方法的参数。
3、在 子路由/子组件 的js里调用
this.$root.eventHub.$on(function1,function2);
function2 为子路由/子组件里的function。即可完成调用。
方法二: 在子路由的 $watch 监听路由变化,当url指向了当前子路由时,就调用子路由内的方法。
watch:{
'$route' (parem){
console.info(parem);
//下面根据parem里不同的值做相应的处理
... ...
}
}
更多推荐
已为社区贡献15条内容
所有评论(0)