flaschengeist-frontend/src/store/module-example/mutations.ts

11 lines
247 B
TypeScript
Raw Normal View History

2020-10-02 07:13:14 +00:00
import { MutationTree } from 'vuex';
import { ExampleStateInterface } from './state';
const mutation: MutationTree<ExampleStateInterface> = {
someMutation (/* state: ExampleStateInterface */) {
// your code
}
};
export default mutation;