diff --git a/src/store/draft/index.ts b/src/store/draft/index.ts index f1e4f8f..691f0f4 100644 --- a/src/store/draft/index.ts +++ b/src/store/draft/index.ts @@ -15,3 +15,5 @@ export const draft: Module = { //mutations, //getters, }; + +export default draft; diff --git a/src/store/index.ts b/src/store/index.ts index 7cb6150..8bef26a 100644 --- a/src/store/index.ts +++ b/src/store/index.ts @@ -8,8 +8,8 @@ import actions from "./actions"; import mutations from "./mutations"; import getters from "./getters"; -import { network } from "./network"; -import { draft } from "./draft"; +import network from "./network"; +import draft from "./draft"; const store: StoreOptions = { state: { diff --git a/src/store/network/index.ts b/src/store/network/index.ts index 6b421a4..9e6952c 100644 --- a/src/store/network/index.ts +++ b/src/store/network/index.ts @@ -20,3 +20,5 @@ export const network: Module = { //mutations, getters }; + +export default network;