I have an Object with multiple properties.
And i want to pass this multiple Props in my component. Usually i know which props i want to pass and do it like this:
<component :prop1="object.prop1" :prop2="object.prop2" :prop3="object.prop3" />
But i want to pass the props without knowing how much props there are in my JSON Object. Like a loop:
<component :loopThroughMyProps="object" />
So that i get the same result. Is there any possibility to achieve this?