-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtest.html
More file actions
28 lines (24 loc) · 764 Bytes
/
Copy pathtest.html
File metadata and controls
28 lines (24 loc) · 764 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Test</title>
<link rel="icon" href="/favicon.svg?version=3">
<link rel="stylesheet" href="/css/styles.css">
<meta name="theme-color" content="#ffffff" />
<meta name="theme-color" media="(prefers-color-scheme: light)" content="#ffffff" />
<meta name="theme-color" media="(prefers-color-scheme: dark)" content="#000000" />
</head>
<body>
<div class="p-4">
<div id="app"></div>
</div>
<script type="module" src="./js/list.test.js"></script>
<script type="module">
import("./js/test.js").then(function ({ run }) {
run(document.getElementById("app"))
})
</script>
</body>
</html>