mirror of https://github.com/doccano/doccano.git
pythondatasetsactive-learningtext-annotationdatasetnatural-language-processingdata-labelingmachine-learningannotation-tool
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
443 B
29 lines
443 B
<template>
|
|
<v-app>
|
|
<the-header />
|
|
<v-main>
|
|
<v-container
|
|
fluid
|
|
fill-height
|
|
>
|
|
<v-layout
|
|
justify-center
|
|
>
|
|
<v-flex>
|
|
<nuxt />
|
|
</v-flex>
|
|
</v-layout>
|
|
</v-container>
|
|
</v-main>
|
|
</v-app>
|
|
</template>
|
|
|
|
<script>
|
|
import TheHeader from '~/components/organisms/layout/TheHeader'
|
|
|
|
export default {
|
|
components: {
|
|
TheHeader
|
|
}
|
|
}
|
|
</script>
|