Files
oa/src/pages/navbar/maps-1.vue
2025-05-24 01:49:48 +09:00

25 lines
492 B
Vue

<script setup lang="ts">
const layoutSwitcher = useLayoutSwitcher()
const pageTitle = useVueroContext<string>('page-title')
onMounted(() => {
pageTitle.value = 'Maps 1'
})
useHead({
title: 'Maps 1 - Navbar - Vuero',
})
</script>
<template>
<component
:is="(layoutSwitcher.dynamicLayoutComponent as any)"
v-bind="layoutSwitcher.dynamicLayoutProps"
size="full"
>
<template #page-heading>
<span />
</template>
<MapsDashboard />
</component>
</template>