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.
38 lines
674 B
38 lines
674 B
<template>
|
|
<v-app id="keep">
|
|
<v-app-bar
|
|
app
|
|
clipped-left
|
|
clipped-right
|
|
color=""
|
|
>
|
|
<slot name="leftDrawerIcon" />
|
|
<nuxt-link to="/" class="top">
|
|
<span class="title ml-3 mr-5">doccano</span>
|
|
</nuxt-link>
|
|
<v-text-field
|
|
solo-inverted
|
|
flat
|
|
hide-details
|
|
label="Search"
|
|
prepend-inner-icon="search"
|
|
/>
|
|
<v-spacer />
|
|
<slot name="rightDrawerIcon" />
|
|
</v-app-bar>
|
|
|
|
<slot name="leftDrawer" />
|
|
<slot name="rightDrawer" />
|
|
|
|
<slot name="content" />
|
|
</v-app>
|
|
</template>
|
|
|
|
<script>
|
|
</script>
|
|
|
|
<style scoped>
|
|
.top{
|
|
text-decoration: none;
|
|
}
|
|
</style>
|