浏览代码

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

正在加载...
取消
保存