Cannot dispatch namespaced action from a separate module: [vuex] unknown action type
You have to namespace the action when dispatching:
dispatch('alerts/' + SHOW_ALERT, null, { root: true });
Using template literals should be:
dispatch(`alerts/${SHOW_ALERT}`, null, { root: true });