transfer project in github

This commit is contained in:
hamid.zarghami1@gmail.com
2024-05-12 15:29:27 +03:30
commit e644edbd65
348 changed files with 164991 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
<template>
<CSubheader
class="custom-subheader px-3"
:class="[
sidebarShow ? null : 'sideBarClose',
sidebarMinimize ? 'sideBarMinimized' : 'sideBarFull'
]">
<slot/>
</CSubheader>
</template>
<script>
export default {
computed: {
sidebarShow() {
return this.$store.state.admin.sidebarShow
},
sidebarMinimize() {
return this.$store.state.admin.sidebarMinimize
}
}
}
</script>