mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-23 10:08:57 +00:00
13 lines
338 B
TypeScript
13 lines
338 B
TypeScript
import * as ko from 'knockout';
|
|
|
|
class CounterExampleViewModel {
|
|
public currentCount = ko.observable(0);
|
|
|
|
public incrementCounter() {
|
|
let prevCount = this.currentCount();
|
|
this.currentCount(prevCount + 1);
|
|
}
|
|
}
|
|
|
|
export default { viewModel: CounterExampleViewModel, template: require('./counter-example.html') };
|