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

19 lines
475 B
TypeScript

import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';
import { HistoricalDataComponent } from './historical-data.component';
const historicalDataRoutes: Routes = [
{
path: '',
component: HistoricalDataComponent,
data: { preload: true, reuse: false }
}
]
@NgModule({
imports: [RouterModule.forChild(historicalDataRoutes)],
exports: [RouterModule]
})
export class HistoricalDataRouting { }