Router and store

This commit is contained in:
James Cole
2022-02-27 10:14:26 +01:00
parent 3a49af94d0
commit cddfa3a8d2
14 changed files with 1283 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
import { MutationTree } from 'vuex';
import { ExampleStateInterface } from './state';
const mutation: MutationTree<ExampleStateInterface> = {
someMutation (/* state: ExampleStateInterface */) {
// your code
}
};
export default mutation;