actions.js 158 B

123456
  1. import { commServer } from './server.js';
  2. export const actions = {
  3. commActions({ commit, state }, { key, data }) {
  4. return commServer(key, data);
  5. },
  6. }