mirror of
https://git.hmsn.ink/kospo/svcm/oa.git
synced 2026-03-20 15:33:33 +09:00
15 lines
245 B
Vue
15 lines
245 B
Vue
<script setup lang="ts">
|
|
const pageTitle = useVueroContext<string>('page-title')
|
|
onMounted(() => {
|
|
pageTitle.value = 'Hobbies'
|
|
})
|
|
|
|
useHead({
|
|
title: 'Hobbies - Sidebar - Vuero',
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<LifestyleDashboardV2 />
|
|
</template>
|