model.js 250 B

1234567891011121314151617181920212223
  1. import {
  2. commServer
  3. } from './server.js';
  4. export default {
  5. namespaced: true,
  6. state: {
  7. },
  8. mutations: {
  9. },
  10. actions: {
  11. commActions({
  12. commit,
  13. state
  14. }, {
  15. payload
  16. }) {
  17. return commServer(payload);
  18. },
  19. }
  20. }