Skip to content

Instantly share code, notes, and snippets.

@jcamilom
Created September 18, 2020 04:20
Show Gist options
  • Save jcamilom/f14893c7b9d0d49b29c81d827393979b to your computer and use it in GitHub Desktop.
Save jcamilom/f14893c7b9d0d49b29c81d827393979b to your computer and use it in GitHub Desktop.
@Component({
selector: 'multi-check-field',
template: `<ng-content></ng-content>`
})
export class MultiCheckFieldComponent implements AfterContentInit {
@ContentChildren(SimpleCheckOptionComponent)
options!: QueryList<SimpleCheckOptionComponent>;
ngAfterContentInit(): void {
// Content query ready
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment