Skip to content
This repository has been archived by the owner on Mar 13, 2022. It is now read-only.

fix: rename module in module-example to exampleModule (fix #118) #119

Merged
merged 1 commit into from Jun 16, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions template/src/store/module-example/index.ts
Expand Up @@ -5,12 +5,12 @@ import actions from './actions';
import getters from './getters';
import mutations from './mutations';

const module: Module<ExampleStateInterface, StoreInterface> = {
const exampleModule: Module<ExampleStateInterface, StoreInterface> = {
namespaced: true,
actions,
getters,
mutations,
state
};

export default module;
export default exampleModule;