angular-cn/integration/hello_world__closure/src/hello-world.component.ts

11 lines
222 B
TypeScript
Raw Normal View History

import {Component, Injectable} from '@angular/core';
@Component({
selector: 'hello-world-app',
template: '<div>Hello {{ name }}!</div>',
})
@Injectable()
export class HelloWorldComponent {
name: string = 'world';
}