mirror of https://github.com/doccano/doccano.git
6 changed files with 82 additions and 84 deletions
Split View
Diff Options
-
6frontend/components/organisms/FeatureCards.vue
-
6frontend/components/organisms/TheHeader.vue
-
40frontend/layouts/annotation.vue
-
13frontend/layouts/demo.vue
-
64frontend/layouts/project.vue
-
37frontend/layouts/projects.vue
@ -1,17 +1,16 @@ |
|||
<template> |
|||
<base-layout> |
|||
<template #content> |
|||
<nuxt /> |
|||
</template> |
|||
</base-layout> |
|||
<v-app> |
|||
<the-header /> |
|||
<nuxt /> |
|||
</v-app> |
|||
</template> |
|||
|
|||
<script> |
|||
import BaseLayout from '~/layouts/BaseLayout' |
|||
import TheHeader from '~/components/organisms/TheHeader' |
|||
|
|||
export default { |
|||
components: { |
|||
BaseLayout |
|||
TheHeader |
|||
} |
|||
} |
|||
</script> |
@ -1,30 +1,29 @@ |
|||
<template> |
|||
<base-layout> |
|||
<template #content> |
|||
<v-content> |
|||
<v-container |
|||
fluid |
|||
fill-height |
|||
<v-app> |
|||
<the-header /> |
|||
<v-content> |
|||
<v-container |
|||
fluid |
|||
fill-height |
|||
> |
|||
<v-layout |
|||
justify-center |
|||
> |
|||
<v-layout |
|||
justify-center |
|||
> |
|||
<v-flex> |
|||
<nuxt /> |
|||
</v-flex> |
|||
</v-layout> |
|||
</v-container> |
|||
</v-content> |
|||
</template> |
|||
</base-layout> |
|||
<v-flex> |
|||
<nuxt /> |
|||
</v-flex> |
|||
</v-layout> |
|||
</v-container> |
|||
</v-content> |
|||
</v-app> |
|||
</template> |
|||
|
|||
<script> |
|||
import BaseLayout from '~/layouts/BaseLayout' |
|||
import TheHeader from '~/components/organisms/TheHeader' |
|||
|
|||
export default { |
|||
components: { |
|||
BaseLayout |
|||
TheHeader |
|||
} |
|||
} |
|||
</script> |
Write
Preview
Loading…
Cancel
Save