Thursday, August 4, 2016

5. Type Script Compilation

Open project folder in Visual Studio Code

app.component.ts

change app.component.ts to “Hello World!”

import { Component } from '@angular/core';

@Component({
  moduleId: module.id,
  selector: 'app-root',
  templateUrl: 'app.component.html',
  styleUrls: ['app.component.css']
})
export class AppComponent {
  title = 'Hello World!';
}

// changes will be reflected in terminal too.

will be refreshed automatically in browser. running on lite web server


No comments:

Post a Comment