File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
src/apps/demo-app/src/app Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ <h2>Layout Demos: </h2>
1212 < button mat-raised-button color ="primary " [routerLink] ="['issues'] "> Github</ button >
1313 < button mat-raised-button color ="primary " [routerLink] ="['stackoverflow'] "> StackOverflow
1414 </ button >
15+ < span > Version: {{version}}</ span >
1516 </ div >
1617 < div fxFlex fxLayout ="column "
1718 fxLayoutAlign ="left top "
Original file line number Diff line number Diff line change 11import { Component , ViewEncapsulation } from '@angular/core' ;
22
3+ import { VERSION } from '@angular/flex-layout' ;
4+
35@Component ( {
46 selector : 'demo-root' ,
57 templateUrl : './app.component.html' ,
68 encapsulation : ViewEncapsulation . None
79} )
8- export class AppComponent { }
10+ export class AppComponent {
11+ version = VERSION . full ;
12+ }
You can’t perform that action at this time.
0 commit comments