1👍
✅
Yous should add myData
to modal
component props
Vue.component('modal', {
template: '#modal-template',
props: ['myData']
})
and then pass it from parent like this:
<modal v-if="showModal" :my-data="myData" @close="showModal = false">
</modal>
1👍
corrected demo from Bsalex
<modal v-if="showModal" :my-data="myData" @close="showModal = false">
Source:stackexchange.com