fantasia-archive/src/store/module-example/mutations.ts
2021-07-09 18:38:42 +02:00

11 lines
243 B
TypeScript

import { MutationTree } from 'vuex'
import { ExampleStateInterface } from './state'
const mutation: MutationTree<ExampleStateInterface> = {
someMutation (/* state: ExampleStateInterface */) {
// your code
}
}
export default mutation