blob: b41a219b92f9c48f8b7c6f6dd5de01a21f954851 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import state from './state'
import * as getters from './getters'
import * as mutations from './mutations'
import * as actions from './actions'
export default {
namespaced: true,
state,
getters,
mutations,
actions
}
|