Files
airport-chengdu-web/src/app/pages/historical-data/historical-data-routing.module.ts
T

19 lines
475 B
TypeScript
Raw Normal View History

2018-10-29 16:27:34 +08:00
import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';
import { HistoricalDataComponent } from './historical-data.component';
const historicalDataRoutes: Routes = [
{
path: '',
2018-12-03 11:28:24 +08:00
component: HistoricalDataComponent,
2019-02-21 14:02:33 +08:00
data: { preload: true, reuse: false }
2018-10-29 16:27:34 +08:00
}
]
@NgModule({
imports: [RouterModule.forChild(historicalDataRoutes)],
exports: [RouterModule]
})
export class HistoricalDataRouting { }