import { ActionTree } from 'vuex'; import TYPES from './types'; const actions: ActionTree = { // 异步调用 // setListTest({ commit }, arr) { // commit(TYPES.SET_LIST_TEST, arr); // }, }; export default actions;