/
githubmirror
/
ionic-framework
Обзор
Документация
Войти
/
githubmirror
/
ionic-framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/angular/test/base/src/app/app.routes.ts
18 строк
470 B
Brandy Smith
test(angular): add a landing page to go between lazy and standalone apps (#30286)
26 мар 2025, 23:55
Не верифицирован
26 мар 2025, 23:55
0893703
Код
Авторство
О чём код?
import { Routes } from '@angular/router'; import { AppLandingComponent } from './app-landing/app-landing.component'; export const routes: Routes = [ { path: '', pathMatch: 'full', component: AppLandingComponent }, { path: 'lazy', loadChildren: () => import('./lazy/app-lazy/app.module').then(m => m.AppModule) }, { path: 'standalone', loadChildren: () => import('./standalone/app-standalone/app.routes').then(m => m.routes) } ];