This repository was archived by the owner on Dec 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.vue
53 lines (51 loc) · 1.49 KB
/
App.vue
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
<template>
<v-app>
<v-navigation-drawer app>
<img width='100px' src="./assets/logo.png">
<v-list dense>
<v-list-tile router :to="'/signup'" >
<v-list-tile-action>
<v-icon color="light-green">home</v-icon>
</v-list-tile-action>
<v-list-tile-content>
<v-list-tile-title color="light-green">Sign Up</v-list-tile-title>
</v-list-tile-content>
</v-list-tile>
<v-list-tile router :to="'/'">
<v-list-tile-action>
<v-icon color="light-green">contact_mail</v-icon>
</v-list-tile-action>
<v-list-tile-content>
<v-list-tile-title color="light-green">Dashboard</v-list-tile-title>
</v-list-tile-content>
</v-list-tile>
</v-list>
</v-navigation-drawer>
<v-toolbar class="primary" dark fixed app>
<v-toolbar-side-icon @click.stop="drawer = !drawer"></v-toolbar-side-icon>
<v-toolbar-title>BlockID - Legally Binding Blockchain Identity</v-toolbar-title>
</v-toolbar>
<v-content>
<v-container fluid fill-height>
<v-layout justify-center align-center>
<router-view></router-view>
</v-layout>
</v-container>
</v-content>
</v-app>
</template>
<script>
export default {
name: 'app'
}
</script>
<style>
#app {
font-family: 'Avenir', Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 60px;
}
</style>