index.js 289 B

12345678910111213
  1. import { Store, install } from './store'
  2. import { mapState, mapMutations, mapGetters, mapActions, createNamespacedHelpers } from './helpers'
  3. export default {
  4. Store,
  5. install,
  6. version: '__VERSION__',
  7. mapState,
  8. mapMutations,
  9. mapGetters,
  10. mapActions,
  11. createNamespacedHelpers
  12. }