mirror of https://github.com/nocodb/nocodb
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.
30 lines
690 B
30 lines
690 B
<script lang="ts" setup> |
|
import { useTitle } from '@vueuse/core' |
|
import { useI18n, useRoute, useSidebar } from '#imports' |
|
|
|
const route = useRoute() |
|
|
|
const { te, t } = useI18n() |
|
|
|
const { hasSidebar } = useSidebar('nc-left-sidebar') |
|
|
|
useTitle(route.meta?.title && te(route.meta.title) ? `${t(route.meta.title)} | NocoDB` : 'NocoDB') |
|
</script> |
|
|
|
<script lang="ts"> |
|
export default { |
|
name: 'DefaultLayout', |
|
} |
|
</script> |
|
|
|
<template> |
|
<div class="w-full h-full"> |
|
<Teleport :to="hasSidebar ? '#nc-sidebar-left' : null" :disabled="!hasSidebar"> |
|
<slot :key="$route.name" name="sidebar" /> |
|
</Teleport> |
|
|
|
<a-layout-content> |
|
<slot /> |
|
</a-layout-content> |
|
</div> |
|
</template>
|
|
|