shopCategory.js 159 B

123456789
  1. export const state = () => ({
  2. shopCategroyList: []
  3. })
  4. export const mutations = {
  5. SET_SHOPCATEGROY (state, list) {
  6. state.shopCategroyList = list
  7. }
  8. }