quickShop.js 201 B

12345678910111213141516
  1. const state = {};
  2. const getters = {};
  3. const mutations = {};
  4. const actions = {
  5. requestIndex() {
  6. }
  7. };
  8. export default {
  9. namespaced:true,
  10. state,
  11. getters,
  12. mutations,
  13. actions,
  14. }