mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
16 lines
377 B
TypeScript
16 lines
377 B
TypeScript
import { NgModule } from "@angular/core";
|
|
import { RouterModule } from "@angular/router";
|
|
|
|
@NgModule({
|
|
imports: [
|
|
RouterModule.forChild([
|
|
{
|
|
path: 'standalone',
|
|
loadComponent: () => import('./standalone/standalone.component').then(m => m.StandaloneComponent)
|
|
}
|
|
])
|
|
],
|
|
exports: [RouterModule]
|
|
})
|
|
export class VersionTestRoutingModule { }
|