diff --git a/client/app.html b/client/app.html deleted file mode 100644 index 13d6c510..00000000 --- a/client/app.html +++ /dev/null @@ -1,11 +0,0 @@ - - - - - {{ HEAD }} - - -

Hello world

-{{ APP }} - - diff --git a/client/src/store/index.js b/client/src/store/index.js index 7e705109..a8255316 100644 --- a/client/src/store/index.js +++ b/client/src/store/index.js @@ -1,7 +1,6 @@ import Vuex from 'vuex' -const createStore = () => { - return new Vuex.Store({ +export default new Vuex.Store({ modules: {}, state: { @@ -15,6 +14,3 @@ const createStore = () => { mutations: {} }) -} - -export default createStore