mirror of
https://git.hmsn.ink/kospo/svcm/oa.git
synced 2026-03-20 19:43:50 +09:00
first
This commit is contained in:
24
src/pages/navbar/maps-1.vue
Normal file
24
src/pages/navbar/maps-1.vue
Normal file
@@ -0,0 +1,24 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user