File tree 2 files changed +18
-12
lines changed
2 files changed +18
-12
lines changed Original file line number Diff line number Diff line change 23
23
</v-list-tile >
24
24
</v-list >
25
25
</v-navigation-drawer >
26
- <v-toolbar app fixed >
26
+ <v-toolbar app >
27
27
<v-btn
28
28
icon
29
29
@click.native.stop =" drawer = !drawer" >
64
64
</v-menu >
65
65
</div >
66
66
</v-toolbar >
67
+ <!-- <v-content>
68
+ <v-container fluid>
69
+ <router-view></router-view>
70
+ </v-container>
71
+ </v-content>
72
+ -->
67
73
<v-content >
68
74
<v-container fluid >
69
75
<nuxt />
70
76
</v-container >
71
77
</v-content >
72
- <v-footer :fixed =" fixed" app >
78
+ <v-footer app :fixed =" fixed" class = " justify-center px-4 " >
73
79
<span >© ; 2017</span >
74
80
</v-footer >
75
81
</v-app >
79
85
export default {
80
86
data () {
81
87
return {
82
- drawer: true ,
88
+ drawer: null ,
83
89
fixed: false ,
84
90
items: [
85
91
{ icon: ' home' , title: ' Welcome' , to: ' /' },
Original file line number Diff line number Diff line change 1
1
<template >
2
- <v-layout text-xs -center >
3
- <v-flex xs12 md8 offset-md2 >
4
- <div class =" wrapper " >
2
+ <v-layout justify-center align -center >
3
+ <v-flex xs12 sm8 >
4
+ <div class =" mt-5 " >
5
5
<div v-if =" !$store.state.user" >
6
6
<login-form ></login-form >
7
- <!-- <v-btn outline large flat nuxt @click="$router.push('/login')" primary>Sign In</v-btn> -->
8
7
</div >
9
- <div v-else class =" flexWrapper" >
8
+ <div v-else class =" flexWrapper align-center " >
10
9
<h4 class =" blue--text" >You're logged in!</h4 >
11
10
<v-btn icon class =" blue white--text" >
12
11
<v-icon >thumb_up</v-icon >
13
12
</v-btn >
14
13
</div >
15
14
</div >
16
- </v-flex >
17
- </v-layout >
15
+ </v-flex >
16
+ </v-layout >
17
+
18
18
</template >
19
19
20
20
<script >
21
21
import LoginForm from ' ~/components/LoginForm'
22
22
23
23
export default {
24
- components: {
25
- LoginForm
24
+ components: {
25
+ LoginForm
26
26
}
27
27
}
28
28
</script >
You can’t perform that action at this time.
0 commit comments