forked from vuejs/router
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
35 lines (30 loc) · 765 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
34
35
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Vue Router e2e tests - Scroll Behavior</title>
<style>
.fade-enter-active,
.fade-leave-active {
transition: opacity 0.5s ease;
}
.fade-enter-from,
.fade-leave-to {
opacity: 0;
}
.view {
border: 1px solid red;
height: 4500px;
position: relative;
}
</style>
</head>
<body>
<a href="/"><< Back to Homepage</a>
<hr />
<main id="app"></main>
<script type="module" src="/scroll-behavior/index.ts"></script>
</body>
</html>