-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (54 loc) · 1.72 KB
/
index.html
File metadata and controls
74 lines (54 loc) · 1.72 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + Lit + TS</title>
<link rel="stylesheet" href="./src/index.scss" />
<script type="module" src="/src/index.ts"></script>
</head>
<body>
<div class="container">
<h1>Vite + Lit</h1>
<aa-session>
<template>
<aa-sequence>
<aa-function-random min="1" max="4" name="rndBehaviour"></aa-function-random>
<aa-screen>
hi
</aa-screen>
<aa-screen>
<div id="container">yo </div>
<script>
debugger;
const rnd = localStrorage.getItem('rndBehaviour');
console.log('hi', rnd);
const container = document.getElementById('container');
container.innerHTML = rnd;
</script>
</aa-screen>
</aa-sequence>
</template>
</aa-session>
</div>
</body>
<script>
{
{/* const a = document.querySelector('.skato');
console.log(a);
a.addEventListener('change', (e) => {
console.log(e.target);
console.log(e.target.value);
}); */}
}
window.onload = () => {
{
{/*
const session1 = document.getElementById('session1');
console.log(session1.toJSON())
console.log(session1.originalChildNodes) */}
}
}
</script>
</html>