我想通过父组件中的this.$emit的方法来触发子组件中的this.$on,应该要怎么做?我做过的尝试:使用vue2.xstyle:#parent { width: 200px; height: 200px; background-color: #eee;
}
.child { width: 100px; height: 100px; background-color: red;
}html:<div id="parent" @click="test">
<p>{{ total }}</p>
<child v-on:increment="test"></child></div>javascript:
添加回答
举报
0/150
提交
取消