Answer the question
In order to leave comments, you need to log in
How to pass variable to adjacent vue component?
App.vue is the parent component that calls the EventList:
<template>
<div id="app">
<Filters
v-bind: events="events"
/>
<br>
<Form
v-bind: event="event"
v-on:
/>
<EventList
v-bind: events="events"
v-on: deleteEvent="deleteEvent"
/>
</div>
</template>
<div class="d-flex justify-content-around shadow p-3 my-3" v-for="event in eventsByFilters" :key="event.id" @dblclick="$emit(event)">
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question