actions.js 137 Bytes
Newer Older
Felipe Artur's avatar
Felipe Artur committed
1 2 3 4 5 6 7
import types from './mutation_types';

export default {
  setActiveTab({ commit }, tab) {
    commit(types.SET_ACTIVE_TAB, tab);
  },
};