12345678910111213141516 |
- import { Component } from '@angular/core';
- import { NavController } from 'ionic-angular';
- @Component({
- selector: 'page-product-list',
- templateUrl: 'product-list.html'
- })
- export class ProductListPage {
- constructor(public navCtrl: NavController) {}
- ionViewDidLoad() {
- console.log('Hello ProductList Page');
- }
- }
|