This commit is contained in:
2025-05-24 01:49:48 +09:00
commit 62abbcf4eb
2376 changed files with 325522 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
<script setup lang="ts">
const pageTitle = useVueroContext<string>('page-title')
onMounted(() => {
pageTitle.value = 'Analytics Dashboard'
})
useHead({
title: 'Analytics Dashboard - Sidebar - Vuero',
})
</script>
<template>
<AnalyticsDashboard />
</template>

View File

@@ -0,0 +1,14 @@
<script setup lang="ts">
const pageTitle = useVueroContext<string>('page-title')
onMounted(() => {
pageTitle.value = 'Banking 1'
})
useHead({
title: 'Banking 1 - Sidebar - Vuero',
})
</script>
<template>
<BankingDashboardV1 />
</template>

View File

@@ -0,0 +1,14 @@
<script setup lang="ts">
const pageTitle = useVueroContext<string>('page-title')
onMounted(() => {
pageTitle.value = 'Banking 2'
})
useHead({
title: 'Banking 2 - Sidebar - Vuero',
})
</script>
<template>
<BankingDashboardV2 />
</template>

View File

@@ -0,0 +1,14 @@
<script setup lang="ts">
const pageTitle = useVueroContext<string>('page-title')
onMounted(() => {
pageTitle.value = 'Banking 3'
})
useHead({
title: 'Banking 3 - Sidebar - Vuero',
})
</script>
<template>
<BankingDashboardV3 />
</template>

View File

@@ -0,0 +1,14 @@
<script setup lang="ts">
const pageTitle = useVueroContext<string>('page-title')
onMounted(() => {
pageTitle.value = 'Charts Apex'
})
useHead({
title: 'Charts Apex - Sidebar - Vuero',
})
</script>
<template>
<ApexDashboard />
</template>

View File

@@ -0,0 +1,14 @@
<script setup lang="ts">
const pageTitle = useVueroContext<string>('page-title')
onMounted(() => {
pageTitle.value = 'Charts BillboardJS'
})
useHead({
title: 'Charts BillboardJS - Sidebar - Vuero',
})
</script>
<template>
<BillboardJsDashboard />
</template>

View File

@@ -0,0 +1,14 @@
<script setup lang="ts">
const pageTitle = useVueroContext<string>('page-title')
onMounted(() => {
pageTitle.value = 'Company Dashboard'
})
useHead({
title: 'Company Dashboard - Sidebar - Vuero',
})
</script>
<template>
<CompanyDashboard />
</template>

View File

@@ -0,0 +1,14 @@
<script setup lang="ts">
const pageTitle = useVueroContext<string>('page-title')
onMounted(() => {
pageTitle.value = 'Course Dashboard'
})
useHead({
title: 'Course Dashboard - Sidebar - Vuero',
})
</script>
<template>
<CourseDashboard />
</template>

View File

@@ -0,0 +1,14 @@
<script setup lang="ts">
const pageTitle = useVueroContext<string>('page-title')
onMounted(() => {
pageTitle.value = 'Ecommerce 1'
})
useHead({
title: 'Ecommerce 1 - Sidebar - Vuero',
})
</script>
<template>
<EcommerceDashboardV1 />
</template>

View File

@@ -0,0 +1,14 @@
<script setup lang="ts">
const pageTitle = useVueroContext<string>('page-title')
onMounted(() => {
pageTitle.value = 'Flights Dashboard'
})
useHead({
title: 'Flights Dashboard - Sidebar - Vuero',
})
</script>
<template>
<FlightsDashboard />
</template>

View File

@@ -0,0 +1,14 @@
<script setup lang="ts">
const pageTitle = useVueroContext<string>('page-title')
onMounted(() => {
pageTitle.value = 'Food Delivery App'
})
useHead({
title: 'Food Delivery App - Sidebar - Vuero',
})
</script>
<template>
<FoodDeliveryApp />
</template>

View File

@@ -0,0 +1,14 @@
<script setup lang="ts">
const pageTitle = useVueroContext<string>('page-title')
onMounted(() => {
pageTitle.value = 'Health Dashboard'
})
useHead({
title: 'Health Dashboard - Sidebar - Vuero',
})
</script>
<template>
<LifestyleDashboardV3 />
</template>

View File

@@ -0,0 +1,14 @@
<script setup lang="ts">
const pageTitle = useVueroContext<string>('page-title')
onMounted(() => {
pageTitle.value = 'Hobbies'
})
useHead({
title: 'Hobbies - Sidebar - Vuero',
})
</script>
<template>
<LifestyleDashboardV2 />
</template>

View File

@@ -0,0 +1,14 @@
<script setup lang="ts">
const pageTitle = useVueroContext<string>('page-title')
onMounted(() => {
pageTitle.value = 'HR Dashboard'
})
useHead({
title: 'HR Dashboard - Sidebar - Vuero',
})
</script>
<template>
<HumanRessourcesDashboard />
</template>

View 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>

View File

@@ -0,0 +1,20 @@
<script setup lang="ts">
const pageTitle = useVueroContext<string>('page-title')
onMounted(() => {
pageTitle.value = 'Influencer Dashboard'
})
useHead({
title: 'Influencer Dashboard - Sidebar - Vuero',
})
</script>
<template>
<div>
<Teleport to="[data-teleport-bg]">
<div class="lifestyle-dashboard-bg" />
</Teleport>
<LifestyleDashboardV1 />
</div>
</template>

View File

@@ -0,0 +1,14 @@
<script setup lang="ts">
const pageTitle = useVueroContext<string>('page-title')
onMounted(() => {
pageTitle.value = 'Jobs'
})
useHead({
title: 'Jobs Dashboard - Sidebar - Vuero',
})
</script>
<template>
<JobsDashboard />
</template>

View File

@@ -0,0 +1,14 @@
<script setup lang="ts">
const pageTitle = useVueroContext<string>('page-title')
onMounted(() => {
pageTitle.value = 'Personal 2'
})
useHead({
title: 'Personal 2 - Sidebar - Vuero',
})
</script>
<template>
<PersonalDashboardV2 />
</template>

View File

@@ -0,0 +1,14 @@
<script setup lang="ts">
const pageTitle = useVueroContext<string>('page-title')
onMounted(() => {
pageTitle.value = 'Personal 3'
})
useHead({
title: 'Personal 3 - Sidebar - Vuero',
})
</script>
<template>
<PersonalDashboardV3 />
</template>

View File

@@ -0,0 +1,14 @@
<script setup lang="ts">
const pageTitle = useVueroContext<string>('page-title')
onMounted(() => {
pageTitle.value = 'Sales Dashboard'
})
useHead({
title: 'Sales Dashboard - Sidebar - Vuero',
})
</script>
<template>
<SalesDashboard />
</template>

View File

@@ -0,0 +1,14 @@
<script setup lang="ts">
const pageTitle = useVueroContext<string>('page-title')
onMounted(() => {
pageTitle.value = 'Soccer'
})
useHead({
title: 'Soccer Dashboard - Sidebar - Vuero',
})
</script>
<template>
<SoccerDashboard />
</template>

View File

@@ -0,0 +1,14 @@
<script setup lang="ts">
const pageTitle = useVueroContext<string>('page-title')
onMounted(() => {
pageTitle.value = 'Stock Dashboard'
})
useHead({
title: 'Stock Dashboard - Sidebar - Vuero',
})
</script>
<template>
<StockDashboard />
</template>

View File

@@ -0,0 +1,14 @@
<script setup lang="ts">
const pageTitle = useVueroContext<string>('page-title')
onMounted(() => {
pageTitle.value = 'Video Dashboard'
})
useHead({
title: 'Video Dashboard - Sidebar - Vuero',
})
</script>
<template>
<LifestyleDashboardV5 />
</template>

View File

@@ -0,0 +1,14 @@
<script setup lang="ts">
const pageTitle = useVueroContext<string>('page-title')
onMounted(() => {
pageTitle.value = 'Widgets Creative'
})
useHead({
title: 'Widgets Creative - Sidebar - Vuero',
})
</script>
<template>
<WidgetsCreative />
</template>

View File

@@ -0,0 +1,14 @@
<script setup lang="ts">
const pageTitle = useVueroContext<string>('page-title')
onMounted(() => {
pageTitle.value = 'Widgets List'
})
useHead({
title: 'Widgets List - Sidebar - Vuero',
})
</script>
<template>
<WidgetsList />
</template>

View File

@@ -0,0 +1,14 @@
<script setup lang="ts">
const pageTitle = useVueroContext<string>('page-title')
onMounted(() => {
pageTitle.value = 'Widgets Stats'
})
useHead({
title: 'Widgets Stats - Sidebar - Vuero',
})
</script>
<template>
<WidgetsStats />
</template>

View File

@@ -0,0 +1,14 @@
<script setup lang="ts">
const pageTitle = useVueroContext<string>('page-title')
onMounted(() => {
pageTitle.value = 'Widgets UI'
})
useHead({
title: 'Widgets UI - Sidebar - Vuero',
})
</script>
<template>
<WidgetsUI />
</template>

View File

@@ -0,0 +1,14 @@
<script setup lang="ts">
const pageTitle = useVueroContext<string>('page-title')
onMounted(() => {
pageTitle.value = 'Writer Dashboard'
})
useHead({
title: 'Writer Dashboard - Sidebar - Vuero',
})
</script>
<template>
<LifestyleDashboardV4 />
</template>