After vuex uses namespaced: true, how to put actions back into the global

when namespaced is not used, actions is registered globally by default, but after use, actions will become under the module, but I don"t want to do this. I also want it to be global. My namespace:true is just for the convenience that I introduce state, without declaring which module to introduce, but I don"t want to affect actions

.

modules: {
    foo: {
      namespaced: true,

      actions: {
        someAction: {
          root: true,
          handler (namespacedContext, payload) { ... } // -> 'someAction'
        }
      }
    }
  }
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b31ad8-2b52e.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b31ad8-2b52e.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?