feat: add ci cd files dont edit those files

This commit is contained in:
mahyargdz
2024-10-21 10:22:26 +03:30
commit fb5b440d42
321 changed files with 188273 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>