editStationModal.js 399 B

12345678910111213141516171819
  1. /* eslint no-param-reassign: 0 */
  2. export default {
  3. namespaced: true,
  4. state: {
  5. originalStation: {},
  6. station: {}
  7. },
  8. getters: {},
  9. actions: {
  10. editStation: ({ commit }, station) => commit("editStation", station)
  11. },
  12. mutations: {
  13. editStation(state, station) {
  14. state.originalStation = JSON.parse(JSON.stringify(station));
  15. state.station = JSON.parse(JSON.stringify(station));
  16. }
  17. }
  18. };