mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-07 13:41:23 +00: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
|
|
}
|
|
}
|