[Vuejs]-I can not passing data by vue.js

0πŸ‘

βœ…

In your child component use the props property to receive parent data like:

<script>
export default {
  props: ['msg'],
  data: function () {
    return {

    }
  }
}
</script>

Read more about this here

Leave a comment