mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-28 12:11:08 -04:00
8 lines
151 B
JavaScript
8 lines
151 B
JavaScript
import * as types from './mutation-types'
|
|
|
|
export default {
|
|
[types.UPDATE_APP_LOADING_STATUS]: (state, data) => {
|
|
state.isAppLoaded = data
|
|
}
|
|
}
|