src/store/store.js   A
last analyzed

Complexity

Total Complexity 0
Complexity/F 0

Size

Lines of Code 19
Function Count 0

Duplication

Duplicated Lines 0
Ratio 0 %

Test Coverage

Coverage 100%

Importance

Changes 5
Bugs 0 Features 0
Metric Value
cc 0
nc 1
dl 0
loc 19
ccs 1
cts 1
cp 1
crap 0
rs 10
c 5
b 0
f 0
wmc 0
mnd 0
bc 0
fnc 0
bpm 0
cpm 0
noi 0
1
import * as actions from './actions';
2
import * as getters from './getters';
3
import * as mutations from './mutations';
4
import state from './state';
5
6
/**
7
 * The comments store module for Vuex
8
 *
9
 * @link https://vuex.vuejs.org/en/modules.html
10
 */
11 2
const module = {
12
	strict: true,
13
	state: state,
14
	actions: actions,
15
	mutations: mutations,
16
	getters: getters
17
};
18
19
export default module;
20