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.
50 lines
947 B
50 lines
947 B
<template>
|
|
<base-layout>
|
|
<template #leftDrawerIcon>
|
|
<v-app-bar-nav-icon @click="drawerLeft = !drawerLeft" />
|
|
</template>
|
|
|
|
<template #leftDrawer>
|
|
<v-navigation-drawer
|
|
v-model="drawerLeft"
|
|
app
|
|
clipped
|
|
color=""
|
|
>
|
|
<side-bar-left />
|
|
</v-navigation-drawer>
|
|
</template>
|
|
|
|
<template #content>
|
|
<v-content>
|
|
<v-container
|
|
fluid
|
|
fill-height
|
|
>
|
|
<v-layout
|
|
justify-center
|
|
>
|
|
<v-flex fill-height>
|
|
<nuxt />
|
|
</v-flex>
|
|
</v-layout>
|
|
</v-container>
|
|
</v-content>
|
|
</template>
|
|
</base-layout>
|
|
</template>
|
|
|
|
<script>
|
|
import BaseLayout from '~/layouts/BaseLayout'
|
|
import SideBarLeft from '~/components/organisms/SideBarLeft'
|
|
|
|
export default {
|
|
components: {
|
|
BaseLayout,
|
|
SideBarLeft
|
|
},
|
|
data: () => ({
|
|
drawerLeft: false
|
|
})
|
|
}
|
|
</script>
|