Created
September 18, 2020 04:20
-
-
Save jcamilom/f14893c7b9d0d49b29c81d827393979b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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