├── .gitignore ├── .npmignore ├── README.md ├── package.json ├── src ├── actions.ts ├── getters.ts ├── index.ts ├── mutations.ts └── state.ts ├── test ├── actions.ts ├── getters.ts └── mutations.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anonyfox/vuex-store-module-example/HEAD/.npmignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anonyfox/vuex-store-module-example/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anonyfox/vuex-store-module-example/HEAD/package.json -------------------------------------------------------------------------------- /src/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anonyfox/vuex-store-module-example/HEAD/src/actions.ts -------------------------------------------------------------------------------- /src/getters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anonyfox/vuex-store-module-example/HEAD/src/getters.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anonyfox/vuex-store-module-example/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/mutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anonyfox/vuex-store-module-example/HEAD/src/mutations.ts -------------------------------------------------------------------------------- /src/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anonyfox/vuex-store-module-example/HEAD/src/state.ts -------------------------------------------------------------------------------- /test/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anonyfox/vuex-store-module-example/HEAD/test/actions.ts -------------------------------------------------------------------------------- /test/getters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anonyfox/vuex-store-module-example/HEAD/test/getters.ts -------------------------------------------------------------------------------- /test/mutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anonyfox/vuex-store-module-example/HEAD/test/mutations.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anonyfox/vuex-store-module-example/HEAD/tsconfig.json --------------------------------------------------------------------------------