I am creating a DOM structure and only want to add some parts in some visual components at first time and do not want them to be refreshed again and again which is the way *ngIf would work. This is to avoid bindings to execute again and again for things I know will never change once created. In other words, Angular1 has ::
operator which help achieve this.
Is there a one time binding for *ngIf
available in Angular2? Please point me to the question, if this is discussed in some other question.