/
githubmirror
/
angular
Обзор
Документация
Войти
/
githubmirror
/
angular
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
integration/cli-hello-world-lazy/src/app/app.component.ts
13 строк
338 B
Andrew Scott
feat(router): Create APIs for using Router without RouterModule (#47010)
16 авг 2022, 01:58
16 авг 2022, 01:58
75df404
Код
Авторство
О чём код?
import {CommonModule} from '@angular/common'; import {Component} from '@angular/core'; import {RouterOutlet} from '@angular/router'; @Component({ selector: 'app-root', standalone: true, imports: [RouterOutlet, CommonModule], templateUrl: './app.component.html', }) export class AppComponent { title = 'cli-hello-world-lazy'; }