mutations.ts 247 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 import { MutationTree } from 'vuex'; import { ExampleStateInterface } from './state'; const mutation: MutationTree<ExampleStateInterface> = { someMutation(/* state: ExampleStateInterface */) { // your code }, }; export default mutation;