Skip to content

Latest commit

 

History

History
33 lines (29 loc) · 678 Bytes

File metadata and controls

33 lines (29 loc) · 678 Bytes

Howto use

npm i --save ionic4-ecommerce-component
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { IonicModule } from '@ionic/angular';
import { FormsModule } from '@angular/forms';
import { RouterModule } from '@angular/router';
import { HomePage } from './home.page';
import { Ionic4EcommerceModule } from 'ionic4-ecommerce-component';

@NgModule({
  imports: [
    CommonModule,
    FormsModule,
    IonicModule,
    Ionic4EcommerceModule,
    RouterModule.forChild([
      {
        path: '',
        component: HomePage
      }
    ])
  ],
  declarations: [HomePage]
})
export class HomePageModule { }