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