Explorar el Código

change export default mutations

pull/342/head
Guillaume Vincent hace 7 años
padre
commit
3e2f86eff0
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. +2
    -2
      src/store/mutations.js

+ 2
- 2
src/store/mutations.js Ver fichero

@@ -5,7 +5,7 @@ function setState(state, id, object) {
set(state, id, Object.assign({}, object));
}

export const mutations = {
export default {
[types.LOGIN](state){
state.authenticated = true;
},
@@ -18,4 +18,4 @@ export const mutations = {
[types.SET_DEFAULT_OPTIONS](state, {options}){
setState(state, 'defaultOptions', options);
}
};
};

Cargando…
Cancelar
Guardar