mirror of https://github.com/doccano/doccano.git
pythondatasetnatural-language-processingdata-labelingmachine-learningannotation-tooldatasetsactive-learningtext-annotation
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.
53 lines
917 B
53 lines
917 B
<template>
|
|
<v-app>
|
|
<v-app-bar
|
|
app
|
|
color=""
|
|
>
|
|
<nuxt-link to="/" style="line-height:0;">
|
|
<img src="~/assets/icon.png" height="48">
|
|
</nuxt-link>
|
|
<v-toolbar-title class="align-center ml-2">
|
|
doccano
|
|
</v-toolbar-title>
|
|
<div class="flex-grow-1" />
|
|
<v-btn
|
|
outlined
|
|
href="auth"
|
|
>
|
|
Sign in
|
|
</v-btn>
|
|
</v-app-bar>
|
|
<nuxt />
|
|
<v-footer
|
|
color="primary lighten-1"
|
|
padless
|
|
>
|
|
<v-layout
|
|
justify-center
|
|
wrap
|
|
>
|
|
<v-flex
|
|
black
|
|
lighten-2
|
|
py-4
|
|
text-center
|
|
white--text
|
|
xs12
|
|
>
|
|
© {{ new Date().getFullYear() }} doccano
|
|
</v-flex>
|
|
</v-layout>
|
|
</v-footer>
|
|
</v-app>
|
|
</template>
|
|
|
|
<script>
|
|
export default {}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.top{
|
|
text-decoration: none;
|
|
}
|
|
</style>
|