admin管理员组文章数量:1345891
I am using Vue.js 2.0 and I am trying to emit an event from child ponent
to parent ponent
but it's not working.
You can see my code below:
child ponent:
<template>
<button @click="confirmSendMessage">Send</button>
</template>
<script>
export default {
methods: {
confirmSendMessage () {
this.$emit('confirmed')
}
}
</script>
parent ponent:
<template>
<ConfirmMessage/>
</template>
<script>
import ConfirmMessage from './ConfirmMessage'
export default {
events: {
confirmed() {
console.log('confirmed')
}
},
ponents: {
ConfirmMessage
}
}
</script>
When I click on the button, nothing appears to me on the Chrome console. I don't know why. Can anybody help me? I am new on Vue JS.
I am using Vue.js 2.0 and I am trying to emit an event from child ponent
to parent ponent
but it's not working.
You can see my code below:
child ponent:
<template>
<button @click="confirmSendMessage">Send</button>
</template>
<script>
export default {
methods: {
confirmSendMessage () {
this.$emit('confirmed')
}
}
</script>
parent ponent:
<template>
<ConfirmMessage/>
</template>
<script>
import ConfirmMessage from './ConfirmMessage'
export default {
events: {
confirmed() {
console.log('confirmed')
}
},
ponents: {
ConfirmMessage
}
}
</script>
When I click on the button, nothing appears to me on the Chrome console. I don't know why. Can anybody help me? I am new on Vue JS.
Share Improve this question edited Feb 18, 2019 at 8:53 Pierce O'Neill 38310 silver badges24 bronze badges asked Mar 20, 2018 at 15:12 Leonardo SantosLeonardo Santos 3007 silver badges16 bronze badges2 Answers
Reset to default 7You missed to listen the emitted event. Use v-on to listen to the event:
<!-- vv -> call method -->
<ConfirmMessage v-on:confirmed="confirmed" />
<!-- ^^ -> emitted event -->
You have to listen the events, if you look the Emit Documentation, it expects as first argument the name of the event as string, an then the values (if you have) you want to pass to the listener.
so it will be:
<confirm-message :nameOfEvent="functionToExecuteWhenTheEventIsEmitted" />
the method will be:
functionToExecuteWhenTeEventIsEmitted(someValue) { //do whatever with someValue}
and on the child:
this.$emit('nameOfEvent', someValue)
In your case
You aren't passing values so this.$emit('confirmed')
and <ConfirmMessage :confirmed="confirmed">
it will be enought
本文标签: javascriptI am using Vuejs 20 and I am trying to emit an event from child componentStack Overflow
版权声明:本文标题:javascript - I am using Vue.js 2.0 and I am trying to emit an event from `child component` - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743759151a2534050.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论