Slide 41
Slide 41 text
KOMPONENTEN
VIEW ENCAPSULATION
§ None: Keine Kapselung der View, Stile von Komponenten können sich überschreiben
§ Emulated: Kapselung des Stylings via Rewriting der CSS-Bezeichner
§ Native: Kapselung des Templates via Shadow DOM
@Component({
selector: 'hackathon-form',
templateUrl: 'hackathonForm.html‘,
encapsulation: ViewEncapsulation.None
})
@Component({
selector: 'hackathon-form',
templateUrl: 'hackathonForm.html‘,
encapsulation: ViewEncapsulation.Native
})