diff --git a/src/store/index.ts b/src/store/index.ts index 986fc9a..d61c6ab 100644 --- a/src/store/index.ts +++ b/src/store/index.ts @@ -2,7 +2,12 @@ import { createStore } from 'vuex'; import VuexPersistence from "vuex-persist"; const vuexLocal = new VuexPersistence({ - storage: window.localStorage + storage: window.localStorage, + reducer(state: RiMaJonState) { + const datos = Object.assign({}, state); + delete datos.dora; + return datos; + } }); export interface RiMaJonState {