/
githubmirror
/
angular
Обзор
Документация
Войти
/
githubmirror
/
angular
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/examples/core/ts/metadata/encapsulation.ts
35 строк
706 B
Shuaib Hasan Akib
refactor(common): sync examples with Angular style guide (#64167)
13 окт 2025, 18:29
13 окт 2025, 18:29
450a38b
Код
Авторство
О чём код?
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {Component, ViewEncapsulation} from '@angular/core'; // #docregion longform @Component({ selector: 'app-root', template: ` <h1>Hello World!</h1> <span class="red">Shadow DOM Rocks!</span> `, styles: [ ` :host { display: block; border: 1px solid black; } h1 { color: blue; } .red { background-color: red; } `, ], encapsulation: ViewEncapsulation.ShadowDom, }) export class MyApp {} // #enddocregion