11 lines
247 B
TypeScript
11 lines
247 B
TypeScript
|
import { MutationTree } from 'vuex';
|
||
|
import { ExampleStateInterface } from './state';
|
||
|
|
||
|
const mutation: MutationTree<ExampleStateInterface> = {
|
||
|
someMutation (/* state: ExampleStateInterface */) {
|
||
|
// your code
|
||
|
}
|
||
|
};
|
||
|
|
||
|
export default mutation;
|