mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-08 22:14:48 +00: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
|
|
}
|
|
}
|