-
-
Notifications
You must be signed in to change notification settings - Fork 5k
/
Copy pathindex.html
31 lines (31 loc) · 1.2 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
<!doctype html>
<html>
<head>
<title>Vue Router Examples</title>
<link rel="stylesheet" href="/global.css">
</head>
<body style="padding: 0 20px">
<h1>Vue Router Examples</h1>
<ul>
<li><a href="basic">Basic</a></li>
<li><a href="hash-mode">Mode: 'hash'</a></li>
<li><a href="nested-routes">Nested Routes</a></li>
<li><a href="named-routes">Named Routes</a></li>
<li><a href="named-views">Named Views</a></li>
<li><a href="route-matching">Route Matching</a></li>
<li><a href="active-links">Active Links</a></li>
<li><a href="redirect">Redirect</a></li>
<li><a href="route-props">Route Props</a></li>
<li><a href="route-alias">Route Alias</a></li>
<li><a href="transitions">Transitions</a></li>
<li><a href="data-fetching">Data Fetching</a></li>
<li><a href="navigation-guards">Navigation Guards</a></li>
<li><a href="scroll-behavior">Scroll Behavior</a></li>
<li><a href="lazy-loading">Lazy Loading</a></li>
<li><a href="auth-flow">Auth Flow</a></li>
<li><a href="discrete-components">Discrete Components</a></li>
<li><a href="nested-router">Nested Routers</a></li>
<li><a href="push-or-replace">Push Or Replace</a></li>
</ul>
</body>
</html>