mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-28 20:21:10 -04:00
23 lines
353 B
JavaScript
23 lines
353 B
JavaScript
import mutations from './mutations'
|
|
import * as actions from './actions'
|
|
import * as getters from './getters'
|
|
|
|
const initialState = {
|
|
customers: [],
|
|
totalCustomers: 0,
|
|
selectAllField: false,
|
|
selectedCustomers: []
|
|
}
|
|
|
|
export default {
|
|
namespaced: true,
|
|
|
|
state: initialState,
|
|
|
|
getters: getters,
|
|
|
|
actions: actions,
|
|
|
|
mutations: mutations
|
|
}
|