examples(with-vuetify): use v-main instead of v-content (#7638)

Since vuetify 2.3 `v-content` became `v-main`
This commit is contained in:
Kawacrepe 2020-06-30 20:25:56 +02:00 committed by GitHub
parent f5da938ac8
commit 05fe682f1d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,11 +15,11 @@
</v-list> </v-list>
</v-navigation-drawer> </v-navigation-drawer>
<main> <main>
<v-content> <v-main>
<v-container fluid> <v-container fluid>
<nuxt /> <nuxt />
</v-container> </v-container>
</v-content> </v-main>
</main> </main>
</v-app> </v-app>
</template> </template>