You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
545 B
TypeScript
22 lines
545 B
TypeScript
![]()
4 weeks ago
|
import { NgModule } from '@angular/core';
|
||
|
import { Routes, RouterModule } from '@angular/router';
|
||
|
|
||
|
import { SpecialColumnPage } from './special-column.page';
|
||
|
|
||
|
const routes: Routes = [
|
||
|
{
|
||
|
path: '',
|
||
|
component: SpecialColumnPage
|
||
|
},
{
|
||
|
path: 'column-describe',
|
||
|
loadChildren: () => import('./column-describe/column-describe.module').then( m => m.ColumnDescribePageModule)
|
||
1 month ago
|
}
|
||
|
|
||
![]()
4 weeks ago
|
];
|
||
|
|
||
|
@NgModule({
|
||
|
imports: [RouterModule.forChild(routes)],
|
||
|
exports: [RouterModule],
|
||
|
})
|
||
|
export class SpecialColumnPageRoutingModule {}
|