-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (27 loc) · 851 Bytes
/
index.html
File metadata and controls
27 lines (27 loc) · 851 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Zeph - Examples - ExampleCollection</title>
<script src="./example-components.js" type="module"></script>
<script>
document.addEventListener("zeph:component:loading",(event)=>{
console.log("zeph:component:loading",event.detail.toString());
});
document.addEventListener("zeph:component:defined",(event)=>{
console.log("zeph:component:defined",event.detail.name);
});
document.addEventListener("zeph:component:undefined",(event)=>{
console.log("zeph:component:undefined",event.detail.name);
});
document.addEventListener("zeph:ready",()=>{
console.log("zeph:ready");
});
</script>
</head>
<body>
<component-one></component-one>
<component-two></component-two>
<component-three></component-three>
</body>
</html>