mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-27 19:51:09 -04:00
6 lines
163 B
JavaScript
6 lines
163 B
JavaScript
import * as types from './mutation-types'
|
|
|
|
export const setSelectedCompany = ({ commit, dispatch, state }, data) => {
|
|
commit(types.SET_SELECTED_COMPANY, data)
|
|
}
|