Newer
Older
import {NgModule} from '@angular/core';
import {IonicPageModule} from 'ionic-angular';
import {GoodsCollectPage} from './goods-collect';
import {GoodsCartPage} from "./goods-cart/goods-cart";
import {GoodsOrderPage} from "./goods-order/goods-order";
@NgModule({
declarations: [
GoodsCollectPage,
GoodsCartPage,
],
imports: [
IonicPageModule.forChild(GoodsCollectPage),
],
entryComponents: [
GoodsCartPage,
GoodsOrderPage,