-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathindex.html
62 lines (52 loc) · 1.63 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
<!doctype html>
<html lang="en">
<head>
<title>Vue SPA No Node</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<style>
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
border: 1px solid #e7e7e7;
background-color: #f3f3f3;
}
li {
float: left;
}
li a {
display: block;
color: #666;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
li a:hover:not(.active) {
background-color: #ddd;
}
li a.active {
color: white;
background-color: #4CAF50;
}
</style>
</head>
<body>
<div id="app">
</div>
<!-- <script type="importmap">
{
"imports": {
"Vue": "https://cdnjs.cloudflare.com/ajax/libs/vue/3.5.12/vue.esm-browser.min.js"
}
}
</script> -->
<script src="https://unpkg.com/vue@3/dist/vue.global.js"></script>
<script src="https://unpkg.com/[email protected]/dist/vue-router.global.js"></script>
<script type="module" src="main.js"></script>
</body>
</html>
<!-- "@vue/devtools-api": "https://unpkg.com/@vue/[email protected]/dist/index.js",
"@vue/devtools-kit": "https://unpkg.com/@vue/[email protected]/dist/index.js",
"@vue/devtools-shared": "https://unpkg.com/@vue/[email protected]/dist/index.js",
"perfect-debounce": "./perfect-debounce.js", -->