2018-10-29 16:27:34 +08:00
|
|
|
import { Component, OnInit } from '@angular/core';
|
|
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
|
selector: 'app-basic-data',
|
2018-11-12 14:32:28 +08:00
|
|
|
template: '<router-outlet></router-outlet>'
|
2018-10-29 16:27:34 +08:00
|
|
|
})
|
|
|
|
|
export class BasicDataComponent implements OnInit {
|
|
|
|
|
|
|
|
|
|
constructor() { }
|
|
|
|
|
|
|
|
|
|
ngOnInit() {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|