mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 03:00:58 +08:00
16 lines
287 B
TypeScript
16 lines
287 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-router-link-page3',
|
|
templateUrl: './router-link-page3.component.html'
|
|
})
|
|
export class RouterLinkPage3Component implements OnInit {
|
|
|
|
constructor() { }
|
|
|
|
ngOnInit() {
|
|
console.log('ngOnInit')
|
|
}
|
|
|
|
}
|