forked from frikinside/vue3-simple-typeahead
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (24 loc) · 954 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
30
31
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="keywords" content="vue bootstrap typeahead">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>Vue.js 3 typeahead component for Bootstrap 4/5</title>
</head>
<body>
<div class="container">
<h1 class="mt-4 mb-3">Vue.js 3 typeahead component for Bootstrap 4/5</h1>
<div id="app"></div>
<footer class="mt-5 mb-4 text-muted border-top pt-3 fs-small d-flex align-items-center">
<span>
Developed by <a href="//www.devangarde.it" class="text-muted" title="Vue.js development by Devangarde">Devangarde</a>
</span>
<span class="italy ms-1 me-2"></span>
<a href="https://www.apache.org/licenses/LICENSE-2.0" rel="nofollow" class="ms-1 text-muted" target="_blank">Apache License 2.0</a>
</footer>
</div>
<script type="module" src="/src/main.js"></script>
</body>
</html>