[Vuejs]-Access Array elements from one component to another Vuejs

0👍

If the list of all you items is located inside you App component – you could use child -> parent communication via events (this.$emit and v-on).

Checkout this doc: https://v2.vuejs.org/v2/guide/components.html#Custom-Events

Leave a comment