Skip to content

Commit

Permalink
fix: 프로젝트 버그 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
mcauto committed Oct 28, 2021
1 parent f19a335 commit 2fe95f4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 0 additions & 1 deletion content/projects/.gitkeep

This file was deleted.

3 changes: 3 additions & 0 deletions store/project.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
export const state = () => ({
showDetail: false,
project: {},
projectLimit: 6,
});

export const getters = {
showDetail: (state) => state.showDetail,
project: (state) => state.project,
projectLimit: (state) => state.projectLimit,
};

Expand All @@ -28,6 +30,7 @@ export const mutations = {
},
init(state) {
state.showDetail = false;
state.project = {};
state.projectLimit = 6;
},
};
Expand Down

0 comments on commit 2fe95f4

Please sign in to comment.