beedle icon indicating copy to clipboard operation
beedle copied to clipboard

Organizing large action.js files

Open chisholmd opened this issue 5 years ago • 0 comments

Any advice for how to break up and organize large action.js files? I was thinking one file per view would be handy. never mind figured out a nice system: actions.js

import * as baseActions from '/store/actions/baseactions.js' import * as taskActions from '/store/actions/taskActions.js'

export default { ...baseActions.default, ...taskActions.default };

chisholmd avatar May 14 '20 20:05 chisholmd