소스 검색

change export default mutations

pull/342/head
Guillaume Vincent 7 년 전
부모
커밋
3e2f86eff0
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      src/store/mutations.js

+ 2
- 2
src/store/mutations.js 파일 보기

@@ -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);
}
};
};

불러오는 중...
취소
저장