mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
refactor(deep-linking): rename to
rename to
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
import { NgModule } from '@angular/core';
|
||||
import { DeepLinkModule } from '../../../../../..';
|
||||
import { IonicPageModule } from '../../../../../..';
|
||||
|
||||
import { ModalPage } from './modal-page';
|
||||
|
||||
@@ -8,7 +8,7 @@ import { ModalPage } from './modal-page';
|
||||
ModalPage,
|
||||
],
|
||||
imports: [
|
||||
DeepLinkModule.forChild(ModalPage)
|
||||
IonicPageModule.forChild(ModalPage)
|
||||
]
|
||||
})
|
||||
export class ModalPageModule {}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { NgModule } from '@angular/core';
|
||||
import { DeepLinkModule } from '../../../../../..';
|
||||
import { IonicPageModule } from '../../../../../..';
|
||||
|
||||
import { PageFour } from './page-four';
|
||||
|
||||
@@ -8,7 +8,7 @@ import { PageFour } from './page-four';
|
||||
PageFour,
|
||||
],
|
||||
imports: [
|
||||
DeepLinkModule.forChild(PageFour)
|
||||
IonicPageModule.forChild(PageFour)
|
||||
]
|
||||
})
|
||||
export class PageFourModule {}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { NgModule } from '@angular/core';
|
||||
import { DeepLinkModule } from '../../../../../..';
|
||||
import { IonicPageModule } from '../../../../../..';
|
||||
|
||||
import { PageOne } from './page-one';
|
||||
import { PageTwoModule } from '../page-two/page-two.module';
|
||||
@@ -9,7 +9,7 @@ import { PageTwoModule } from '../page-two/page-two.module';
|
||||
PageOne,
|
||||
],
|
||||
imports: [
|
||||
DeepLinkModule.forChild(PageOne),
|
||||
IonicPageModule.forChild(PageOne),
|
||||
PageTwoModule
|
||||
]
|
||||
})
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { NgModule } from '@angular/core';
|
||||
import { DeepLinkModule } from '../../../../../..';
|
||||
import { IonicPageModule } from '../../../../../..';
|
||||
|
||||
import { PageThree } from './page-three';
|
||||
|
||||
@@ -8,7 +8,7 @@ import { PageThree } from './page-three';
|
||||
PageThree,
|
||||
],
|
||||
imports: [
|
||||
DeepLinkModule.forChild(PageThree)
|
||||
IonicPageModule.forChild(PageThree)
|
||||
]
|
||||
})
|
||||
export class PageThreeModule {}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { NgModule } from '@angular/core';
|
||||
import { DeepLinkModule } from '../../../../../..';
|
||||
import { IonicPageModule } from '../../../../../..';
|
||||
|
||||
import { PageTwo } from './page-two';
|
||||
|
||||
@@ -8,7 +8,7 @@ import { PageTwo } from './page-two';
|
||||
PageTwo,
|
||||
],
|
||||
imports: [
|
||||
DeepLinkModule.forChild(PageTwo)
|
||||
IonicPageModule.forChild(PageTwo)
|
||||
]
|
||||
})
|
||||
export class PageTwoModule {}
|
||||
|
||||
Reference in New Issue
Block a user