/
githubmirror
/
components
Обзор
Документация
Войти
/
githubmirror
/
components
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v21.2.11
src/dev-app/dev-app.ts
21 строка
711 B
Kristiyan Kostadinov
build: remove explicit standalone flag from dev apps
17 окт 2024, 17:40
17 окт 2024, 17:40
7085280
Код
Авторство
О чём код?
/** * @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 {ChangeDetectionStrategy, Component, ViewEncapsulation} from '@angular/core'; import {RouterModule} from '@angular/router'; import {DevAppLayout} from './dev-app/dev-app-layout'; /** Root component for the dev-app demos. */ @Component({ selector: 'dev-app', template: '<dev-app-layout><router-outlet></router-outlet></dev-app-layout>', encapsulation: ViewEncapsulation.None, imports: [DevAppLayout, RouterModule], changeDetection: ChangeDetectionStrategy.OnPush, }) export class DevApp {}