mirror of
https://git.hmsn.ink/kospo/svcm/oa.git
synced 2026-03-20 14:03:28 +09:00
15 lines
256 B
Vue
15 lines
256 B
Vue
<script setup lang="ts">
|
|
const pageTitle = useVueroContext<string>('page-title')
|
|
onMounted(() => {
|
|
pageTitle.value = 'Form Layouts 3'
|
|
})
|
|
|
|
useHead({
|
|
title: 'Form Layouts 3 - Navbar - Vuero',
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<FormLayoutSeparate />
|
|
</template>
|