angular.js - What is the selector in the angularjs 4 component used for?
黄舟
黄舟 2017-06-13 09:22:51
0
1
935

@Component({
selector: 'hero-detail',
template: `
<p *ngIf="hero">

    <h2>{{hero.name}} details!</h2>
    <p><label>id: </label>{{hero.id}}</p>
    <p>
      <label>name: </label>
      <input [(ngModel)]="hero.name" placeholder="name"/>
    </p>

</p>
`
})
What is the selector used for?

黄舟
黄舟

人生最曼妙的风景,竟是内心的淡定与从容!

reply all(1)
typecho

selector is the container of template

The selector here is hero-detail, then the following template will be displayed in a container like <hero-detail></hero-detail>

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template