actions.ts 277 Bytes
import { ActionTree } from 'vuex';
import { StateInterface } from '../index';
import { ExampleStateInterface } from './state';

const actions: ActionTree<ExampleStateInterface, StateInterface> = {
  someAction(/* context */) {
    // your code
  },
};

export default actions;