src/helloWorld.component.ts
selector | v-hello-world |
template | Hello world from the {{ projectTitle }} module! |
projectTitle |
projectTitle: |
Default value: ng2 custom validation
|
import { Component } from '@angular/core';
@Component({
selector: 'v-hello-world',
template: 'Hello world from the {{ projectTitle }} module!'
})
export class HelloWorldComponent {
projectTitle: string = 'ng2 custom validation';
}