web/client/store/drawer.js   A
last analyzed

Complexity

Total Complexity 2
Complexity/F 1

Size

Lines of Code 15
Function Count 2

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
wmc 2
eloc 7
mnd 0
bc 0
fnc 2
dl 0
loc 15
rs 10
bpm 0
cpm 1
noi 0
c 0
b 0
f 0
1
export const state = () => ({
2
  visible: false
3
})
4
5
export const getters = {
6
}
7
8
export const mutations = {
9
  setVisible (state, value) {
10
    state.visible = value
11
  }
12
}
13
14
export const actions = {
15
}
16