-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
39 lines (31 loc) · 1.06 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
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>Vue.js 2 #8 vue-router and Vuetify.js</title>
<link rel='stylesheet prefetch' href='https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Material+Icons'>
<link rel='stylesheet prefetch' href='https://unpkg.com/vuetify/dist/vuetify.min.css'>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="app">
<v-toolbar>
<v-toolbar-title>Fullstack Series</v-toolbar-title>
<v-spacer></v-spacer>
<v-toolbar-items>
<v-btn flat href="#/">Home</v-btn>
<v-btn flat href='#/about-us'>About us</v-btn>
<v-btn flat href='#/contact'>Contact</v-btn>
<v-btn flat href='#/test'>Test</v-btn>
</v-toolbar-items>
</v-toolbar>
<transition name="fade">
<router-view></router-view>
</transition>
</div>
<script src='https://unpkg.com/vue'></script>
<script src='https://unpkg.com/vue-router/dist/vue-router.js'></script>
<script src='https://unpkg.com/vuetify/dist/vuetify.min.js'></script>
<script src="js/index.js"></script>
</body>
</html>