I am dealing with an object that has multiple properties.
Typically, I know which props I want to pass to my component and do it like this:
<component :prop1="object.prop1" :prop2="object.prop2" :prop3="object.prop3" />
However, I want to pass the props without prior knowledge of how many props are in my JSON Object. Essentially, I want to loop through them:
<component :loopThroughMyProps="object" />
This way, I aim to achieve the same result. Is there a way to accomplish this?