mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-22 17:47:53 +00:00
16 lines
257 B
TypeScript
16 lines
257 B
TypeScript
import * as ng from 'angular2/core';
|
|
|
|
@ng.Component({
|
|
selector: 'counter'
|
|
})
|
|
@ng.View({
|
|
template: require('./counter.html')
|
|
})
|
|
export class Counter {
|
|
public currentCount = 0;
|
|
|
|
public incrementCounter() {
|
|
this.currentCount++;
|
|
}
|
|
}
|