checkPersonalCode.js 488 B

12345678910111213141516171819
  1. // export const state = () => ({
  2. // checkPersonalCode: {
  3. // fetching: false,
  4. // data: []
  5. // }
  6. // })
  7. //
  8. // export const mutations = {
  9. // REQUEST_PERSONAL_CODE (state) {
  10. // state.checkPersonalCode.fetching = true
  11. // },
  12. // GET_PERSONAL_CODE_FAILURE (state) {
  13. // state.checkPersonalCode.fetching = false
  14. // },
  15. // GET_PERSONAL_CODE_SUCCESS (state, result) {
  16. // state.checkPersonalCode.fetching = false
  17. // state.checkPersonalCode.data = result
  18. // }
  19. // }