forked from e111077/vite-lit-element-ts-sass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (38 loc) · 1.43 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/src/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + Lit-Element App</title>
<script type="module" src="/src/components/MyElement/my-element.ts"></script>
<script type="module" src="/src/components/extended-element/extended-element.ts"></script>
<script type="module" src="/src/components/double-extended-element/double-extended-element.ts"></script>
<script type="module" src="/src/components/ScssExample/scss-example.ts"></script>
</head>
<body>
<my-element>
<p>This is an instance of <my-element>.</p>
</my-element>
<hr />
<extended-element>
<p>
This is <extended-element> that extends <my-element>. Notice
the original properties, name and count are updated, and additionally a
new property, containing text, displayed below.
</p>
</extended-element>
<hr />
<double-extended-element>
<p>
This is <double-extended-element> that extends
<extended-element>. Notice the original properties, name and count
are updated, and additionally a new property, containing text, displayed
below.
</p>
</double-extended-element>
<scss-example>
<p>This is an example for SCSS</p>
</scss-example>
</body>
</html>