You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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'
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
};
The text was updated successfully, but these errors were encountered: