mirror of
https://git.hmsn.ink/kospo/svcm/oa.git
synced 2026-03-20 13:43:50 +09:00
17 lines
350 B
Vue
17 lines
350 B
Vue
<script setup lang="ts">
|
|
const { t } = useI18n()
|
|
|
|
const pageTitle = useVueroContext<string>('page-title')
|
|
onMounted(() => {
|
|
pageTitle.value = t('pages.dashboard-personnal-1.page-title')
|
|
})
|
|
|
|
useHead(() => ({
|
|
title: `${t('pages.dashboard-personnal-1.page-title')} - Sidebar - Vuero`,
|
|
}))
|
|
</script>
|
|
|
|
<template>
|
|
<PersonalDashboardV1 />
|
|
</template>
|