mirror of
https://git.hmsn.ink/kospo/svcm/oa.git
synced 2026-03-20 13:53:30 +09:00
first
This commit is contained in:
14
src/pages/sidebar/dashboards/analytics.vue
Normal file
14
src/pages/sidebar/dashboards/analytics.vue
Normal 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>
|
||||
14
src/pages/sidebar/dashboards/banking-1.vue
Normal file
14
src/pages/sidebar/dashboards/banking-1.vue
Normal 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>
|
||||
14
src/pages/sidebar/dashboards/banking-2.vue
Normal file
14
src/pages/sidebar/dashboards/banking-2.vue
Normal 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>
|
||||
14
src/pages/sidebar/dashboards/banking-3.vue
Normal file
14
src/pages/sidebar/dashboards/banking-3.vue
Normal 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>
|
||||
14
src/pages/sidebar/dashboards/charts-apex.vue
Normal file
14
src/pages/sidebar/dashboards/charts-apex.vue
Normal 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>
|
||||
14
src/pages/sidebar/dashboards/charts-billboardsjs.vue
Normal file
14
src/pages/sidebar/dashboards/charts-billboardsjs.vue
Normal 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>
|
||||
14
src/pages/sidebar/dashboards/company.vue
Normal file
14
src/pages/sidebar/dashboards/company.vue
Normal 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>
|
||||
14
src/pages/sidebar/dashboards/course.vue
Normal file
14
src/pages/sidebar/dashboards/course.vue
Normal 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>
|
||||
14
src/pages/sidebar/dashboards/ecommerce-1.vue
Normal file
14
src/pages/sidebar/dashboards/ecommerce-1.vue
Normal 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>
|
||||
14
src/pages/sidebar/dashboards/flights.vue
Normal file
14
src/pages/sidebar/dashboards/flights.vue
Normal 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>
|
||||
14
src/pages/sidebar/dashboards/food-delivery.vue
Normal file
14
src/pages/sidebar/dashboards/food-delivery.vue
Normal 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>
|
||||
14
src/pages/sidebar/dashboards/health.vue
Normal file
14
src/pages/sidebar/dashboards/health.vue
Normal 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>
|
||||
14
src/pages/sidebar/dashboards/hobbies.vue
Normal file
14
src/pages/sidebar/dashboards/hobbies.vue
Normal 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>
|
||||
14
src/pages/sidebar/dashboards/human-ressources.vue
Normal file
14
src/pages/sidebar/dashboards/human-ressources.vue
Normal 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>
|
||||
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>
|
||||
20
src/pages/sidebar/dashboards/influencer.vue
Normal file
20
src/pages/sidebar/dashboards/influencer.vue
Normal 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>
|
||||
14
src/pages/sidebar/dashboards/jobs.vue
Normal file
14
src/pages/sidebar/dashboards/jobs.vue
Normal 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>
|
||||
14
src/pages/sidebar/dashboards/personal-2.vue
Normal file
14
src/pages/sidebar/dashboards/personal-2.vue
Normal 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>
|
||||
14
src/pages/sidebar/dashboards/personal-3.vue
Normal file
14
src/pages/sidebar/dashboards/personal-3.vue
Normal 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>
|
||||
14
src/pages/sidebar/dashboards/sales.vue
Normal file
14
src/pages/sidebar/dashboards/sales.vue
Normal 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>
|
||||
14
src/pages/sidebar/dashboards/soccer.vue
Normal file
14
src/pages/sidebar/dashboards/soccer.vue
Normal 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>
|
||||
14
src/pages/sidebar/dashboards/stocks.vue
Normal file
14
src/pages/sidebar/dashboards/stocks.vue
Normal 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>
|
||||
14
src/pages/sidebar/dashboards/video.vue
Normal file
14
src/pages/sidebar/dashboards/video.vue
Normal 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>
|
||||
14
src/pages/sidebar/dashboards/widgets-sample-creative.vue
Normal file
14
src/pages/sidebar/dashboards/widgets-sample-creative.vue
Normal 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>
|
||||
14
src/pages/sidebar/dashboards/widgets-sample-list.vue
Normal file
14
src/pages/sidebar/dashboards/widgets-sample-list.vue
Normal 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>
|
||||
14
src/pages/sidebar/dashboards/widgets-sample-stats.vue
Normal file
14
src/pages/sidebar/dashboards/widgets-sample-stats.vue
Normal 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>
|
||||
14
src/pages/sidebar/dashboards/widgets-sample-ui.vue
Normal file
14
src/pages/sidebar/dashboards/widgets-sample-ui.vue
Normal 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>
|
||||
14
src/pages/sidebar/dashboards/writer.vue
Normal file
14
src/pages/sidebar/dashboards/writer.vue
Normal 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>
|
||||
Reference in New Issue
Block a user