[Vuejs]-Unable to access vue data in basic modal

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>
👤Bsalex

1👍

corrected demo from Bsalex

<modal v-if="showModal" :my-data="myData" @close="showModal = false">

Leave a comment