Is there a way to pass an object from child to parent without relying on @viewChild or services?
export class MultiSelectComponent implements OnInit {
selectedItems: FormSelectComponentOption[] = [];
@Input()
items: FormSelectComponentOption[];
@Output()
selected = new EventEmitter<FormSelectComponentOption[]>();
}
What method can I use to retrieve a complete FormSelectComponentOption via a "request"?