UNPKG

363 BPlain TextView Raw
1import { NgModule } from '@angular/core';
2import { Routes, RouterModule } from '@angular/router';
3
4const routes: Routes = [
5 {
6 path: '',
7 redirectTo: 'hello',
8 pathMatch: 'full'
9 }
10];
11
12console.log('route', routes);
13
14@NgModule({
15 imports: [RouterModule.forRoot(routes)],
16 exports: [RouterModule],
17 providers: []
18})
19export class AppRoutingModule { }