mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-27 11:41:09 -04:00
14 lines
354 B
JavaScript
14 lines
354 B
JavaScript
import * as types from './mutation-types'
|
|
import Ls from '@/services/ls'
|
|
|
|
export default {
|
|
[types.BOOTSTRAP_COMPANIES] (state, companies) {
|
|
state.companies = companies
|
|
state.selectedCompany = companies[0]
|
|
},
|
|
[types.SET_SELECTED_COMPANY] (state, company) {
|
|
Ls.set('selectedCompany', company.id)
|
|
state.selectedCompany = company
|
|
}
|
|
}
|