We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9809a0 commit 0a488b0Copy full SHA for 0a488b0
src/router.ts
@@ -160,11 +160,6 @@ const router = new Router({
160
// which is lazy-loaded when the route is visited.
161
component: () => import(/* webpackChunkName: "about" */ './views/About.vue')
162
},
163
- {
164
- path: '/login',
165
- name: 'login',
166
- component: () => import('./views/Login.vue')
167
- },
168
{
169
path: '/join',
170
name: 'join',
src/views/Home.vue
@@ -83,11 +83,11 @@
83
</v-list>
84
</v-menu>
85
</v-app-bar>
86
- <v-content>
+ <v-main>
87
<v-container fluid>
88
<router-view></router-view>
89
</v-container>
90
- </v-content>
+ </v-main>
91
<v-dialog v-model="dialog" width="500">
92
<v-card>
93
<v-card-title primary-title>Vue Vuetify Admin</v-card-title>
0 commit comments