mirror of
https://git.hmsn.ink/kospo/svcm/oa.git
synced 2026-03-21 00:33:40 +09:00
36 lines
779 B
Vue
36 lines
779 B
Vue
<script setup lang="ts">
|
|
import Layout from '/@src/layouts/navbar.vue'
|
|
|
|
/**
|
|
* This is a Vue Component that will be
|
|
* automatically mapped to a entry on vue-router.
|
|
*
|
|
* You will be able to access this page at http://localhost:3000/starters/navbar-blank-page-2
|
|
* Page uri will match related path to src/pages folder
|
|
*
|
|
* Read more about routing:
|
|
* @see /vite.config.ts
|
|
* @see /src/router.ts
|
|
*/
|
|
|
|
const pageTitle = useVueroContext<string>('page-title')
|
|
onMounted(() => {
|
|
pageTitle.value = 'Blank Page 2'
|
|
})
|
|
|
|
useHead({
|
|
title: 'Blank Page 2 - Navbar - Vuero',
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<Layout theme="fade">
|
|
<!--
|
|
Page content goes here
|
|
|
|
You can see pages content samples from
|
|
files in /src/components/pages directory
|
|
-->
|
|
</Layout>
|
|
</template>
|