-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
29 lines (29 loc) · 997 Bytes
/
index.html
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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="https://polyfill.io/v3/polyfill.min.js?features=Symbol"></script>
<script src="./dist/js/lib/webcomponents-loader.js"></script>
<script src="./dist/js/lib/vendors.js"></script>
<script src="./dist/js/wc/std-button.js"></script>
<script src="./dist/js/wc/lit-button.js"></script>
<style>
button {
padding: 8px;
border-radius: 4px;
}
</style>
<title>WebComponents Sample (Transpiled by Babel)</title>
</head>
<body>
<h1>WebComponents Sample (Transpiled by Babel)</h1>
<button>Default Button</button>
<std-button>Web Components Button</std-button>
<lit-button>LitElement Button</lit-button>
<ul>
<li><a href="report.html">Bundle Analyse Report</a></li>
<li><a href="index-ts.html">Transpiled by TypeScript</a></li>
</ul>
</body>
</html>