瀏覽代碼

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

Loading…
取消
儲存