2016-04-26 21:10:05 +08:00
|
|
|
///<reference path="../../browser.d.ts"/>
|
|
|
|
|
2016-05-09 23:04:56 +08:00
|
|
|
import {Component, ViewEncapsulation} from "@angular/core";
|
2016-05-04 23:20:21 +08:00
|
|
|
import {RouterLink} from "@angular/router-deprecated";
|
2016-05-09 23:04:56 +08:00
|
|
|
|
2016-04-26 21:10:05 +08:00
|
|
|
@Component({
|
|
|
|
selector: 'app-frame',
|
2016-05-09 23:04:56 +08:00
|
|
|
templateUrl: 'app/frame/frame.component.html',
|
|
|
|
directives: [RouterLink],
|
2016-04-26 21:10:05 +08:00
|
|
|
encapsulation: ViewEncapsulation.Emulated
|
|
|
|
})
|
2016-05-09 23:04:56 +08:00
|
|
|
export class FrameComponent {
|
|
|
|
constructor() {
|
2016-04-26 21:10:05 +08:00
|
|
|
}
|
2016-05-09 23:04:56 +08:00
|
|
|
|
2016-05-01 16:28:05 +08:00
|
|
|
|
2016-04-26 21:10:05 +08:00
|
|
|
}
|
|
|
|
|