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 { HomePage } from './home-page';
|
||||
|
||||
@@ -8,7 +8,7 @@ import { HomePage } from './home-page';
|
||||
HomePage,
|
||||
],
|
||||
imports: [
|
||||
DeepLinkModule.forChild(HomePage)
|
||||
IonicPageModule.forChild(HomePage)
|
||||
]
|
||||
})
|
||||
export class HomePageModule {}
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
import { NgModule } from '@angular/core';
|
||||
import { DeepLinkModule } from '../../../../../..';
|
||||
import { IonicPageModule } from '../../../../../..';
|
||||
import { FirstPage } from './first-page';
|
||||
|
||||
@NgModule({
|
||||
imports: [
|
||||
DeepLinkModule.forChild(FirstPage)
|
||||
IonicPageModule.forChild(FirstPage)
|
||||
],
|
||||
declarations: [
|
||||
FirstPage
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
import { NgModule } from '@angular/core';
|
||||
import { DeepLinkModule } from '../../../../../..';
|
||||
import { IonicPageModule } from '../../../../../..';
|
||||
import { SecondPage } from './second-page';
|
||||
@NgModule({
|
||||
imports: [
|
||||
DeepLinkModule.forChild(SecondPage)
|
||||
IonicPageModule.forChild(SecondPage)
|
||||
],
|
||||
declarations: [
|
||||
SecondPage
|
||||
|
||||
Reference in New Issue
Block a user