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
+20
View File
@@ -0,0 +1,20 @@
export const state = () => ({
sidebarShow: 'responsive',
sidebarMinimize: false,
unreadMessagesCount: 0
})
export const mutations = {
toggleSidebarDesktop(state) {
const sidebarOpened = [true, 'responsive'].includes(state.sidebarShow)
state.sidebarShow = sidebarOpened ? false : 'responsive'
},
toggleSidebarMobile(state) {
const sidebarClosed = [false, 'responsive'].includes(state.sidebarShow)
state.sidebarShow = sidebarClosed ? true : 'responsive'
},
set(state, [variable, value]) {
state[variable] = value
}
}
+1344
View File
File diff suppressed because it is too large Load Diff
+9
View File
@@ -0,0 +1,9 @@
export const state = () => ({
cover: {}
})
export const mutations = {
setCover(state, payload) {
state.cover = payload
}
}