-
-
Notifications
You must be signed in to change notification settings - Fork 68
/
index.html
33 lines (27 loc) · 936 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
32
33
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Vue 3 Playground</title>
<link rel="icon" href="./logo.png" type="image/png">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css">
<style>
.container {
max-width: 960px;
}
.border-top { border-top: 1px solid #e5e5e5; }
.border-bottom { border-bottom: 1px solid #e5e5e5; }
.border-top-gray { border-top-color: #adb5bd; }
.box-shadow { box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05); }
.lh-condensed { line-height: 1.25; }
</style>
</head>
<body class="bg-light">
<div class="container">
<div id="app"></div>
<footer class="my-5 pt-5 text-muted text-center text-small" id="footer"></footer>
</div>
<script type="module" src="./src/javascript/main.js"></script>
<!-- <script type="module" src="./src/typescript/main.ts"></script> -->
</body>
</html>