[Vuejs]-How do I pass data to a component using Props in Vue2?

0👍

The component also needed activeCafes on the v-for

<template>
    <div>
        <div v-for="cafe in activeCafes">
            <h1>Visit: {{cafe.cafeName}} </h1>
        </div>
    </div>
</template>

Leave a comment