boutique replica bags up ideas

the best replique rolex and prices here.

julia highlight 99j hair color 10a quality straight human hair lace front wigs 8 - 24 inches pre plucked hairline 13x4 inches lace front brazilian wig onlinefor sale

Stop compile or bind the contents of the current DOM element in Angular

Updated on     Kisan Patel

How to stop compile or bind the contents of the current DOM element in Angular?

The ngNonBindable tells Angular not to compile or bind the contents of the current DOM element. Source.

app.component.ts

import { Component, VERSION } from '@angular/core';

@Component({
  selector: 'my-app',
  templateUrl: './app.component.html',
  styleUrls: [ './app.component.css' ]
})
export class AppComponent {
  name = 'Angular ' + VERSION.major;
}

app.component.html

<h1>{{name}}</h1> 
<h1 ngNonBindable>{{name}}</h1>
// will print 
//Angular 10 {{name}}

Angular

Leave a Reply