vue中的自定义事件只能子传父?

我想通过父组件中的this.$emit的方法来触发子组件中的this.$on,应该要怎么做?
我做过的尝试:
使用vue2.x

style:

#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:

https://img2.mukewang.com/5bcfdbbb0001d4eb04580532.jpg

智慧大石
浏览 499回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript