Files
ionic-framework/scripts/templates/component/ts.tmpl
2016-09-26 10:57:21 +01:00

23 lines
444 B
Cheetah

import { Component } from '@angular/core';
/*
Generated class for the $CLASSNAME component.
See https://angular.io/docs/ts/latest/api/core/index/ComponentMetadata-class.html
for more info on Angular 2 Components.
*/
@Component({
selector: '$FILENAME',
templateUrl: '$FILENAME.html'
})
export class $CLASSNAME {
text: string;
constructor() {
console.log('Hello $CLASSNAME Component');
this.text = 'Hello World';
}
}