Answers for "how to make input in angular optional"

CSS
2

how to make input in angular optional

export class ChildComponent {

    @Input() showName?: boolean;

    constructor() { }

}
Posted by: Guest on June-22-2020
2

how to make input in angular optional

export class ChildComponent {

    @Input() showName?: boolean;

    constructor() { }

}
Posted by: Guest on June-22-2020

Code answers related to "how to make input in angular optional"

Browse Popular Code Answers by Language