Browse Source

Replace v-content with v-main

pull/897/head
Hironsan 4 years ago
parent
commit
7a10a2edad
4 changed files with 6 additions and 7 deletions
  1. 4
      frontend/layouts/annotation.vue
  2. 4
      frontend/layouts/project.vue
  3. 4
      frontend/layouts/projects.vue
  4. 1
      frontend/pages/projects/_id/dataset/index.vue

4
frontend/layouts/annotation.vue

@ -18,7 +18,7 @@
/>
</v-navigation-drawer>
<v-content>
<v-main>
<v-overlay :value="loading">
<v-progress-circular indeterminate size="64" />
</v-overlay>
@ -57,7 +57,7 @@
</v-col>
</v-row>
</v-container>
</v-content>
</v-main>
<bottom-navigator
v-model="page"

4
frontend/layouts/project.vue

@ -18,7 +18,7 @@
/>
</v-navigation-drawer>
<v-content>
<v-main>
<v-container
fluid
fill-height
@ -31,7 +31,7 @@
</v-flex>
</v-layout>
</v-container>
</v-content>
</v-main>
</v-app>
</template>

4
frontend/layouts/projects.vue

@ -1,7 +1,7 @@
<template>
<v-app>
<the-header />
<v-content>
<v-main>
<v-container
fluid
fill-height
@ -14,7 +14,7 @@
</v-flex>
</v-layout>
</v-container>
</v-content>
</v-main>
</v-app>
</template>

1
frontend/pages/projects/_id/dataset/index.vue

@ -23,7 +23,6 @@ export default {
},
validate({ params, query }) {
console.log(query)
return /^\d+$/.test(params.id) && /^\d+|$/.test(query.limit) && /^\d+|$/.test(query.offset)
}
}

Loading…
Cancel
Save