子组件给父组件通信,$emit没效果,不报错
来源:3-4 编程式路由
慕UI0367381
2018-04-09
父组件:
<div v-on:discheck="disChecked"></div>
<router-view :currentId="currentViewId"></router-view>
methods:{
disChecked(){
alert(123)
this.activeIndex = '0';
}
}
子组件触发事件
checkDetail(){
this.$emit('discheck',this.currentDate);
console.log(123)
this.$router.push({path:'/home/detail'});
}
子组件触发能打印出123,父组件不会触发,alert没反应,没有报错,也没有大写,什么问题?
写回答
2回答
-
v-on绑定到子组件上
00 -
慕UI0367381
提问者
2018-04-10
昨天试了好久试出来了
00
相似问题