Newer
Older
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
import { TabsPage } from './tabs';
//导入其他模块
import { HomeModule } from './home/home.module';
import { MineModule } from './mine/mine.module';
import { ContactModule } from './contact/contact.module';
import { WorkbenchModule } from './workbench/workbench.module';
@NgModule({
declarations: [
TabsPage,
],
imports: [
IonicPageModule.forChild(TabsPage),
BrowserModule,
HomeModule,
ContactModule,
WorkbenchModule,