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
497 B
28 lines
497 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> |
|
<v-main> |
|
<slot name="sidebar"> |
|
<div id="sidebar" /> |
|
</slot> |
|
|
|
<slot /> |
|
</v-main> |
|
</template>
|
|
|