This repository contains 4 examples of array and prop handling in Vue:
1. Contact_InternalArray shows how a child component can display an array (of Strings) where the data is local via a v-for loop.
2. Contact_InternalArrayOfObjects shows how a child component can display the contents of an array of Objects where the data is local via a v-for loop.
3. Contact_ExternalArray shows how a child component can display an array (of Strings) where the data is passed to the child from a parent component as a prop.
4. Contact_ExternalArrayOfObjects shows how a child component can display the contents of an an array of Objects where the data is passed to the child from a parent component as a prop.
npm install
npm run serve
npm run build
npm run lint