mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-27 11:41:09 -04:00
24 lines
370 B
JavaScript
24 lines
370 B
JavaScript
import mutations from './mutations'
|
|
import * as actions from './actions'
|
|
import * as getters from './getters'
|
|
|
|
const initialState = {
|
|
payments: [],
|
|
totalPayments: 0,
|
|
selectAllField: false,
|
|
selectedPayments: [],
|
|
paymentModes: []
|
|
}
|
|
|
|
export default {
|
|
namespaced: true,
|
|
|
|
state: initialState,
|
|
|
|
getters: getters,
|
|
|
|
actions: actions,
|
|
|
|
mutations: mutations
|
|
}
|