blob: a3194367bbb690fd8870107491602c8b8035924a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<counter>
<h3>Times clicked: { count }</h3>
<push-button />
<script>
this.count = 0;
const counter = this;
observe('clicker').on('click', () => {
counter.count += 1;
counter.update();
});
</script>
</counter>
|