micro-front-end
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
758 B

  1. import { Component, OnDestroy, OnInit } from '@angular/core';
  2. import { Router } from '@angular/router';
  3. import { MySharedService } from 'my-shared';
  4. @Component({
  5. selector: 'remote-layout',
  6. templateUrl: './layout.component.html',
  7. styleUrls: ['./layout.component.scss'],
  8. })
  9. export class LayoutComponent implements OnInit, OnDestroy {
  10. constructor(
  11. private router: Router,
  12. private mySharedService: MySharedService
  13. ) {}
  14. ngOnInit(): void {
  15. console.log(this);
  16. console.log('Remote LayoutComponent Init');
  17. }
  18. ngOnDestroy(): void {
  19. console.log('Remote LayoutComponent Destroy');
  20. }
  21. goToRemote1(): void {
  22. this.mySharedService.setData('我是到款认领系统发送过来的数据');
  23. // this.router.navigate(['']);
  24. }
  25. }