Browse Source

Replace v-content with v-main

pull/904/head
Hironsan 4 years ago
parent
commit
e11ea04752
6 changed files with 12 additions and 12 deletions
  1. 4
      frontend/pages/auth.vue
  2. 4
      frontend/pages/demo/named-entity-recognition/index.vue
  3. 4
      frontend/pages/demo/sentiment-analysis/index.vue
  4. 4
      frontend/pages/demo/text-to-sql/index.vue
  5. 4
      frontend/pages/demo/translation/index.vue
  6. 4
      frontend/pages/index.vue

4
frontend/pages/auth.vue

@ -1,6 +1,6 @@
<template> <template>
<v-app id="inspire"> <v-app id="inspire">
<v-content>
<v-main>
<v-container class="fill-height" fluid> <v-container class="fill-height" fluid>
<v-row align="center" justify="center"> <v-row align="center" justify="center">
<v-col cols="12" sm="8" md="4"> <v-col cols="12" sm="8" md="4">
@ -10,7 +10,7 @@
</v-col> </v-col>
</v-row> </v-row>
</v-container> </v-container>
</v-content>
</v-main>
</v-app> </v-app>
</template> </template>

4
frontend/pages/demo/named-entity-recognition/index.vue

@ -1,5 +1,5 @@
<template> <template>
<v-content>
<v-main>
<v-container fluid> <v-container fluid>
<v-row justify="center"> <v-row justify="center">
<v-col cols="12" md="9"> <v-col cols="12" md="9">
@ -21,7 +21,7 @@
</v-col> </v-col>
</v-row> </v-row>
</v-container> </v-container>
</v-content>
</v-main>
</template> </template>
<script> <script>

4
frontend/pages/demo/sentiment-analysis/index.vue

@ -1,5 +1,5 @@
<template> <template>
<v-content>
<v-main>
<v-container fluid> <v-container fluid>
<v-row justify="center"> <v-row justify="center">
<v-col cols="12" md="9"> <v-col cols="12" md="9">
@ -22,7 +22,7 @@
</v-col> </v-col>
</v-row> </v-row>
</v-container> </v-container>
</v-content>
</v-main>
</template> </template>
<script> <script>

4
frontend/pages/demo/text-to-sql/index.vue

@ -1,5 +1,5 @@
<template> <template>
<v-content>
<v-main>
<v-container fluid> <v-container fluid>
<v-row justify="center"> <v-row justify="center">
<v-col cols="12" md="9"> <v-col cols="12" md="9">
@ -23,7 +23,7 @@
</v-col> </v-col>
</v-row> </v-row>
</v-container> </v-container>
</v-content>
</v-main>
</template> </template>
<script> <script>

4
frontend/pages/demo/translation/index.vue

@ -1,5 +1,5 @@
<template> <template>
<v-content>
<v-main>
<v-container fluid> <v-container fluid>
<v-row justify="center"> <v-row justify="center">
<v-col cols="12" md="9"> <v-col cols="12" md="9">
@ -23,7 +23,7 @@
</v-col> </v-col>
</v-row> </v-row>
</v-container> </v-container>
</v-content>
</v-main>
</template> </template>
<script> <script>

4
frontend/pages/index.vue

@ -1,9 +1,9 @@
<template> <template>
<v-content>
<v-main>
<the-top-banner /> <the-top-banner />
<feature-cards /> <feature-cards />
<the-bottom-banner /> <the-bottom-banner />
</v-content>
</v-main>
</template> </template>
<script> <script>

Loading…
Cancel
Save