forked from vuejs/router
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
35 lines (28 loc) · 919 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 - Multi app</title>
</head>
<body>
<a href="/"><< Back to Homepage</a>
<hr />
<button id="mount1">Mount App 1</button>
<button id="mount2">Mount App 2</button>
<button id="mount3">Mount App 3</button>
<br />
<button id="unmount1">Unmount App 1</button>
<button id="unmount2">Unmount App 2</button>
<button id="unmount3">Unmount App 3</button>
<hr />
popstate count: <span id="popcount"></span>
<br />
guard call count: <span id="guardcount"></span>
<div id="app-1"></div>
<div id="app-2"></div>
<div id="app-3"></div>
<script type="module" src="/multi-app/index.ts"></script>
</body>
</html>