We are trying to get props from binding and inject into child component

we are trying to access the props passed to bindings and pass the props to vue child component when it’s mounted. Please check the below code snippet. Here on console we are able to console the props but not able to send it to OrdersRatingRDComponent. Have checked the official fynd documentation as well. there is no provision to pass props from bindings

window.FPI.extension.register(“#rd-orders”, {
mounted(element, props) {
console.log(“props:”,props);
window.FPI.extension.mountApp({
element,
component: OrdersRatingRDComponent
});
},
});