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.
39 lines
684 B
39 lines
684 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=""
|
|
>
|
|
<the-side-bar />
|
|
</v-navigation-drawer>
|
|
</template>
|
|
|
|
<template #content>
|
|
<nuxt />
|
|
</template>
|
|
</base-layout>
|
|
</template>
|
|
|
|
<script>
|
|
import BaseLayout from '~/layouts/BaseLayout'
|
|
import TheSideBar from '~/components/organisms/TheSideBar'
|
|
|
|
export default {
|
|
components: {
|
|
BaseLayout,
|
|
TheSideBar
|
|
},
|
|
data() {
|
|
return {
|
|
drawerLeft: false
|
|
}
|
|
}
|
|
}
|
|
</script>
|