[Vuejs]-Vue.js send data to a child component and display them

0👍

Add this to your child component’s script to define the passed prop before using it:

export default {
  name: "Service",
  props: ['services']
};

Leave a comment