Files
crater/resources/assets/js/store/modules/settings/preferences/mutations.js
2019-11-11 17:53:47 +05:30

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
}
}