-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.html
More file actions
42 lines (34 loc) · 1023 Bytes
/
example.html
File metadata and controls
42 lines (34 loc) · 1023 Bytes
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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<script src="./index.js"></script>
<script src="./MicroModel/index.js"></script>
</head>
<body>
<div id="test"></div>
<script type="text/javascript">
class MM extends MicroModel {
constructor(props) {
super(props);
this.state = {upper:1};
}
render() {
this.node.innerHTML = this.state.upper ? `HELLO WORLD!` : `Hello World!`;
}
}
const Test = AddOnClick(MM);
var test;
window.onload = () => {
test = new Test({ id: 'test' });
test.handlers.push(
() => test.setState({upper: !test.state.upper}),
console.log,
console.log.bind(console,2)
);
}
</script>
</body>
</html>