Elements-SY

modify

...@@ -41,14 +41,7 @@ const mutations = { ...@@ -41,14 +41,7 @@ const mutations = {
41 SET_APPHEADERBLOCKCH: (state, height) => { 41 SET_APPHEADERBLOCKCH: (state, height) => {
42 state.headerBlockClientHeight = height; 42 state.headerBlockClientHeight = height;
43 }, 43 },
44 -<<<<<<< HEAD
45 } 44 }
46 -=======
47 - SET_APPMAINBLOCKCH: (state, height) => {
48 - state.appMainBlockClientHeight = height;
49 - },
50 -};
51 ->>>>>>> test
52 45
53 const actions = { 46 const actions = {
54 toggleSideBar({ commit }) { 47 toggleSideBar({ commit }) {
...@@ -63,15 +56,6 @@ const actions = { ...@@ -63,15 +56,6 @@ const actions = {
63 setSize({ commit }, size) { 56 setSize({ commit }, size) {
64 commit("SET_SIZE", size); 57 commit("SET_SIZE", size);
65 }, 58 },
66 -<<<<<<< HEAD
67 -=======
68 - setAppHeaderBlockCH({ commit }, height) {
69 - commit("SET_APPHEADERBLOCKCH", height);
70 - },
71 - setAppMainBlockCH({ commit }, height) {
72 - commit("SET_APPMAINBLOCKCH", height);
73 - },
74 ->>>>>>> test
75 }; 59 };
76 60
77 export default { 61 export default {
......