mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-27 11:41:09 -04:00
11 lines
230 B
JavaScript
11 lines
230 B
JavaScript
import * as types from './mutation-types'
|
|
|
|
export default {
|
|
[types.SET_MOMENT_DATE_FORMAT] (state, data) {
|
|
state.momentDateFormat = data
|
|
},
|
|
[types.SET_LANGUAGE_FORMAT] (state, data) {
|
|
window.i18n.locale = data
|
|
}
|
|
}
|