[Vuejs]-How to pass data from api as prop in vuejs

0👍

After some research

I found out I was not supposed to use {{}}

instead I should do it this way on the parent component

<items name="Hubs" :value="data.items.hubs" bgColor="#d79a2b" />

Leave a comment