Please fill out as many of the following questions as possible so we can help you promptly! If you don’t know how to answer or it does not apply, feel free to remove it or leave it blank.
Builder content link
Builder public api key
9dc5088db3194d1288d9d0980bd5befe
What are you trying to accomplish
I have a somewhat working angular implementation using some existing code. I am evaluating builder.io but I am having an issue fulfilling angular inputs. For example, I have configuration data that is required to properly render the component, but with everything I’ve read, I cannot figure out how to get data from the parent to the child. I added an API endpoint that will contain some of the necessary information, but I have no idea where that information “goes”.
Screenshots or video link
The inputs are ‘undefined’
Code stack you are integrating Builder with
Angular 12
Reproducible code example
@Component({
selector: ‘test-comp’,
template: '
})
class fake implements OnInit {
@Input() test: string;
ngOnInit(): void {
console.log(this.test); // is undefinied
}
}