From 7d608728233b48cdd524af37d265888d1bd2ac25 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?No=C3=A9=20Viricel?= Date: Thu, 17 Dec 2020 13:42:06 +0100 Subject: [PATCH] Vuex store init --- store/index.js | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 store/index.js diff --git a/store/index.js b/store/index.js new file mode 100644 index 0000000..5597adf --- /dev/null +++ b/store/index.js @@ -0,0 +1,7 @@ +export const state = () => ({}); + +export const mutations = {}; + +export const actions = {}; + +export const getters = {};