UNPKG

brat-frontend-editor

Version:
21 lines (16 loc) 378 B
import { Injectable } from '@angular/core'; import { Http } from '@angular/http'; @Injectable() export class Title { value = 'Angular 2'; constructor(public http: Http) { } getData() { console.log('Title#getData(): Get Data'); // return this.http.get('/assets/data.json') // .map(res => res.json()); return { value: 'AngularClass' }; } }