Node-Red configuration
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

vuex.mjs 424B

1234567891011121314151617181920212223242526272829303132
  1. import Vuex from '../dist/vuex.cjs.js'
  2. const {
  3. version,
  4. Store,
  5. storeKey,
  6. createStore,
  7. install,
  8. useStore,
  9. mapState,
  10. mapMutations,
  11. mapGetters,
  12. mapActions,
  13. createNamespacedHelpers,
  14. createLogger
  15. } = Vuex
  16. export {
  17. Vuex as default,
  18. version,
  19. Store,
  20. storeKey,
  21. createStore,
  22. install,
  23. useStore,
  24. mapState,
  25. mapMutations,
  26. mapGetters,
  27. mapActions,
  28. createNamespacedHelpers,
  29. createLogger
  30. }