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.
28 lines
549 B
28 lines
549 B
<script lang="ts" setup> |
|
import { useI18n } from 'vue-i18n' |
|
import { useHead, useRoute } from '#imports' |
|
|
|
const route = useRoute() |
|
|
|
const { te, t } = useI18n() |
|
|
|
useHead({ |
|
title: route.meta?.title && te(route.meta.title as string) ? `${t(route.meta.title as string)} | NocoDB` : 'NocoDB', |
|
}) |
|
</script> |
|
|
|
<script lang="ts"> |
|
export default { |
|
name: 'Default', |
|
} |
|
</script> |
|
|
|
<template> |
|
<a-layout-content> |
|
<teleport v-if="$slots.sidebar" to="#sidebar"> |
|
<slot name="sidebar" /> |
|
</teleport> |
|
|
|
<slot /> |
|
</a-layout-content> |
|
</template>
|
|
|