mirror of
https://git.hmsn.ink/kospo/svcm/oa.git
synced 2026-03-20 08:33:52 +09:00
25 lines
492 B
Vue
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>
|