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
};