-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathhello.html
45 lines (35 loc) · 954 Bytes
/
hello.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
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Core-Hello Web Component</title>
<link rel="stylesheet" type="text/css" href="hello.css">
</head>
<body>
<core-hello rainbow lang="en">
<span slot="name">Mark</span>
</core-hello>
<core-hello lang="en">
<span slot="name">Mark</span>
</core-hello>
<core-hello lang="zh">
<span slot="name">马克</span>
</core-hello>
<core-hello lang="hi">
<span slot="name">Mark</span>
</core-hello>
<core-hello lang="hi" rainbow>
<span slot="name">Mark</span>
</core-hello>
<core-button rounded size="medium" color="primary">
Submit
</core-button>
<core-button shadow size="large">
Submit
</core-button>
<script src="dist/lib/core-hello/index.js"></script>
<script src="dist/lib/core-button/index.js"></script>
</body>
</html>