gaobaoming
2018-11-09 ee46fec15bdaa4d83c92015278f273c728a191eb
commit | author | age
41fc80 1 import { NgModule } from '@angular/core';
W 2 import { InputComponent } from './input/input';
3 import { IonicPageModule } from 'ionic-angular';
4 import { SelectComponent } from './select/select';
5 import { CheckboxComponent } from './checkbox/checkbox';
ee46fe 6 import{ DropdownlistComponent } from './dropdownlist/dropdownlist';
41fc80 7
W 8 @NgModule({
9   declarations: [
10     InputComponent,
11     SelectComponent,
ee46fe 12     CheckboxComponent,
G 13     DropdownlistComponent
41fc80 14   ],
W 15   imports: [
16     IonicPageModule.forChild(InputComponent),
17     IonicPageModule.forChild(SelectComponent),
ee46fe 18     IonicPageModule.forChild(CheckboxComponent),
G 19     IonicPageModule.forChild(DropdownlistComponent)
41fc80 20   ],
W 21   exports: [
22     InputComponent,
23     SelectComponent,
ee46fe 24     CheckboxComponent,
G 25     DropdownlistComponent
41fc80 26   ]
W 27 })
28 export class ComponentsModule {}