[Vuejs]-Putting the same child component multiple times in the parent component does not render

0👍

try this instead of repeating yourself"

<child-component v-for="i in 3" :key="i"></child-component>

and make sure you have imported the child component in parent component correctly

Leave a comment