src/hello-world.component.ts
selector | ecpl-hello-world |
template |
|
Properties |
projectTitle |
projectTitle:
|
Type : string
|
Default value : Ecpl Article Viewer
|
Defined in src/hello-world.component.ts:8
|
import { Component } from '@angular/core';
@Component({
selector: 'ecpl-hello-world',
template: 'Hello world from the {{ projectTitle }} module!'
})
export class HelloWorldComponent {
projectTitle: string = 'Ecpl Article Viewer';
}