traxxx/assets/js/stashes/stashes.js

14 lines
250 B
JavaScript

import state from './state';
import mutations from './mutations';
import actions from './actions';
function initStashesStore(store, router) {
return {
state,
mutations,
actions: actions(store, router),
};
}
export default initStashesStore;