Project: Mall App Client: Maiora
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

profile.page.ts 446 B

1234567891011121314151617181920212223
  1. import { Component, OnInit } from '@angular/core';
  2. import { Location } from '@angular/common';
  3. @Component({
  4. selector: 'app-profile',
  5. templateUrl: './profile.page.html',
  6. styleUrls: ['./profile.page.scss'],
  7. })
  8. export class ProfilePage implements OnInit {
  9. selected_tab: string = 'MY ORDERS';
  10. constructor(
  11. private location: Location
  12. ) { }
  13. ngOnInit() {
  14. }
  15. back() {
  16. this.location.back();
  17. }
  18. }