mirror of
https://github.com/crater-invoice/crater.git
synced 2025-11-01 14:11:09 -04:00
12 lines
281 B
JavaScript
12 lines
281 B
JavaScript
import * as types from './mutation-types'
|
|
|
|
export default {
|
|
[types.BOOTSTRAP_COMPANIES] (state, companies) {
|
|
state.companies = companies
|
|
state.selectedCompany = companies[0]
|
|
},
|
|
[types.SET_SELECTED_COMPANY] (state, company) {
|
|
state.selectedCompany = company
|
|
}
|
|
}
|