blob: ab2ea55397ec962f2bcb370f77d588af968bb4b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
# Vigilante
## Example
app.tag
```jsx
<app>
<counter />
<push-button />
<script>
import { observe } from 'vigilante';
</script>
</app>
```
counter.tag
```jsx
<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>
```
push-button.tag
```jsx
<push-button>
<button onclick={ click }>Click me!</button>
<script>
click() {
observe('clicker').trigger('click');
}
</script>
</push-button>
```
## Get it
```shell
yarn install vigilante
```
|