Skip to content
This repository was archived by the owner on May 8, 2025. It is now read-only.

Commit 39eddce

Browse files
authored
fix(template): update v-content to v-main (#186)
1 parent 6e14328 commit 39eddce

File tree

3 files changed

+6
-6
lines changed
  • packages

3 files changed

+6
-6
lines changed

packages/@vuetify/base/generator/template/src/layouts/default/View.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<template>
2-
<v-content>
2+
<v-main>
33
<v-fade-transition mode="out-in">
44
<router-view />
55
</v-fade-transition>
6-
</v-content>
6+
</v-main>
77
</template>
88

99
<script>

packages/vue-cli-plugin-vuetify/generator/templates/default/src/App.js.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,13 @@
4545
</v-btn>
4646
</v-app-bar>
4747

48-
<v-content>
48+
<v-main>
4949
<%_ if (router) { _%>
5050
<router-view/>
5151
<%_ } else { _%>
5252
<HelloWorld/>
5353
<%_ } _%>
54-
</v-content>
54+
</v-main>
5555
</v-app>
5656
</template>
5757

packages/vue-cli-plugin-vuetify/generator/templates/default/src/App.ts.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,13 @@
4545
</v-btn>
4646
</v-app-bar>
4747

48-
<v-content>
48+
<v-main>
4949
<%_ if (router) { _%>
5050
<router-view/>
5151
<%_ } else { _%>
5252
<HelloWorld/>
5353
<%_ } _%>
54-
</v-content>
54+
</v-main>
5555
</v-app>
5656
</template>
5757

0 commit comments

Comments
 (0)