product-list.ts 341 B

12345678910111213141516
  1. import { Component } from '@angular/core';
  2. import { NavController } from 'ionic-angular';
  3. @Component({
  4. selector: 'page-product-list',
  5. templateUrl: 'product-list.html'
  6. })
  7. export class ProductListPage {
  8. constructor(public navCtrl: NavController) {}
  9. ionViewDidLoad() {
  10. console.log('Hello ProductList Page');
  11. }
  12. }