somewhere

This commit is contained in:
Swift
2023-08-17 13:05:51 +03:30
parent 30c7eb0e7b
commit 53843207cc
429 changed files with 117489 additions and 1 deletions
+34
View File
@@ -0,0 +1,34 @@
<template>
<div>
<CustomSubHeader>
<CBreadcrumb class="border-0 mb-0">{{ title }}</CBreadcrumb>
</CustomSubHeader>
<CCol sm="6">
<CCard>
<CCardHeader>
<strong>صفحه اصلی</strong>
</CCardHeader>
<CCardBody>
<h1>به پنل مدیریت خوش آمدید.</h1>
</CCardBody>
</CCard>
</CCol>
</div>
</template>
<script>
export default {
name: 'AdminDashboard',
layout: 'admin',
data() {
return {
title: 'صفحه اصلی'
}
},
head() {
return {
title: this.title
}
}
}
</script>