[Vuejs]-Refresh details page from child component

0👍

Note your event updateDetailsPage is emitted by correlateds component so you should get in this component, not in the div. See:

<correlateds v-if="correlateds" :correlateds="correlateds" @updateDetailsPage="updatePage" />

Leave a comment