I'm trying the heros tutorial from the angular 2 official site:
https://angular.io/docs/ts/latest/tutorial/toh-pt1.html
But I can't retrieve the values for AppComponent, it always returns an empty value.
Here the code of app.component.ts
import { Component } from '@angular/core';
@Component({
selector: 'my-app',
template: '<h1>Titulo: {{titulo}}</h1>'
})
export class AppComponent {
titulo: 'Tour de heroes';
}
When I save the changes and refresh the page I only get: Titulo: