type.js 217 B

12345678910111213
  1. export const state = () => ({
  2. type: {
  3. fetching: false,
  4. data: 'mall'
  5. }
  6. })
  7. export const mutations = {
  8. GET_TYPE_SUCCESS (state, result) {
  9. state.type.fetching = false
  10. state.type.data = result
  11. }
  12. }