mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-23 01:58:29 +00:00
14 lines
240 B
TypeScript
14 lines
240 B
TypeScript
import * as ng from 'angular2/core';
|
|
|
|
@ng.Component({
|
|
selector: 'counter',
|
|
template: require('./counter.html')
|
|
})
|
|
export class Counter {
|
|
public currentCount = 0;
|
|
|
|
public incrementCounter() {
|
|
this.currentCount++;
|
|
}
|
|
}
|