This repository was archived by the owner on Feb 10, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathindex.html
57 lines (57 loc) · 1.81 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="robots" content="index,follow" />
<meta name="viewport" content="width=1000" />
<title>Vue universal modal</title>
<meta
name="description"
content="Vue3 modal plugin based on the teleport"
/>
<meta property="og:title" content="Vue universal modal" />
<meta property="og:description" content="VueJS diff viewer plugin" />
<meta
name="keywords"
content="Vue modal, VueJS modal, Vue modal plugin, VueJS modal plugin, Vue3 modal, VueJS3 modal, Vue3 teleport modal, VueJS3 teleport modal"
/>
<link
href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css"
rel="stylesheet"
/>
<meta
name="google-site-verification"
content="u7XrdGhKnDkPIIw867fVSCqMet0sjBwyu5aYpy8stuQ"
/>
</head>
<body>
<div class="p-12">
<div class="text-3xl font-extrabold text-gray-900">
<h1 class="inline-block">Vue universal modal</h1>
<!-- Place this tag where you want the button to render. -->
<span
style="
display: inline-block;
line-height: 0;
margin: -4px 0 0 10px;
vertical-align: middle;
font-size: 0;
"
>
<a
class="github-button"
href="https://github.com/hoiheart/vue-universal-modal"
data-size="large"
data-show-count="true"
aria-label="Star hoiheart/vue-universal-modal on GitHub"
>Star</a
>
</span>
</div>
<div id="app" class="text-gray-900"></div>
<div id="modals"></div>
</div>
<script type="module" src="/example/main.ts"></script>
<script async defer src="https://buttons.github.io/buttons.js"></script>
</body>
</html>