update:add ci cd files ==> do not edit those file

This commit is contained in:
mahyargdz
2024-10-10 21:49:00 +03:30
parent 6fe34708a2
commit 8cf0492c87
464 changed files with 79533 additions and 0 deletions
+50
View File
@@ -0,0 +1,50 @@
<template>
<CHeader fixed with-subheader light>
<CToggler
in-header
class="ml-3 d-lg-none"
@click="$store.commit('admin/toggleSidebarMobile')"
/>
<CToggler
in-header
class="ml-3 d-md-down-none"
@click="$store.commit('admin/toggleSidebarDesktop')"
/>
<!-- <CHeaderBrand class="mx-auto d-lg-none" to="/">-->
<!-- <CIcon name="logo" height="48" alt="Logo"/>-->
<!-- </CHeaderBrand>-->
<!-- <CHeaderNav class="d-md-down-none mr-auto">-->
<!-- <CHeaderNavItem class="px-3">-->
<!-- <CHeaderNavLink :to="{name: 'admin'}">-->
<!-- صفحه اصلی-->
<!-- </CHeaderNavLink>-->
<!-- </CHeaderNavItem>-->
<!-- </CHeaderNav>-->
<CHeaderNav class="mr-4 mr-auto">
<TheHeaderDropdownAccnt/>
</CHeaderNav>
</CHeader>
</template>
<script>
export default {
name: 'TheHeader',
data() {
return {
breadcrumb: [
{
text: 'صفحه اصلی',
to: '/admin'
},
{
text: 'لیست دانلود ها',
to: {name: 'admin-downloads'}
},
{
text: 'This is a span'
}
]
}
}
}
</script>