📜  设置默认路由角度 - TypeScript 代码示例

📅  最后修改于: 2022-03-11 14:48:20.891000             🧑  作者: Mango

代码示例3
// Place import at the top
import { Router,NavigationStart} from '@angular/router';

//Place the code below inside your class
constructor(private router: Router){}

ngOnInit(){
   this.router.events.subscribe(event =>{
      if (event instanceof NavigationStart){
           
      }
   })
}