Total Complexity | 0 |
Complexity/F | 0 |
Lines of Code | 19 |
Function Count | 0 |
Duplicated Lines | 0 |
Ratio | 0 % |
Coverage | 100% |
Changes | 5 | ||
Bugs | 0 | Features | 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 |