forked from RobinCK/vue-popper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (78 loc) · 2.03 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>VueJS popper component</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.4.1/css/bulma.min.css"
/>
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
/>
</head>
<body>
<style>
.nav {
background: #00d1b2;
}
#app {
padding: 15px 25px;
}
code {
overflow: auto;
}
.popper {
padding: 5px;
}
.popper-content {
line-height: 80px;
margin: 20px;
}
.columns.box {
margin: 20px 0;
padding: 0;
}
</style>
<nav class="nav is-warning">
<div class="nav-left">
<a class="nav-item nav-title"> VueJS popper component </a>
</div>
<span class="nav-toggle">
<span></span>
<span></span>
<span></span>
</span>
<div class="nav-right nav-menu">
<div class="nav-item">
<div class="field is-grouped">
<p class="control">
<a
class="button is-primary"
href="https://github.com/RobinCK/vue-popper/archive/master.zip"
>
<span class="icon">
<i class="fa fa-download"></i>
</span>
<span>Download</span>
</a>
</p>
<p class="control">
<a class="button" href="https://github.com/RobinCK/vue-popper">
<span class="icon">
<i class="fa fa-github"></i>
</span>
<span>GitHub</span>
</a>
</p>
</div>
</div>
</div>
</nav>
<div id="app"></div>
<script type="module" src="/example/main.js"></script>
</body>
</html>