diff options
author | Mateja <mail@matejamaric.com> | 2021-07-08 17:21:03 +0200 |
---|---|---|
committer | Mateja <mail@matejamaric.com> | 2021-07-08 17:21:03 +0200 |
commit | b53de384fb235155e48ab505719d65ee5f2fbe03 (patch) | |
tree | 0c3d95fc767ca5c8b70e8aa7d53ed15cc9ee6a60 /client/src/store | |
download | mevn-ecommerce-b53de384fb235155e48ab505719d65ee5f2fbe03.tar.gz mevn-ecommerce-b53de384fb235155e48ab505719d65ee5f2fbe03.zip |
Added frontend boilerplate...
Diffstat (limited to 'client/src/store')
-rw-r--r-- | client/src/store/index.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/client/src/store/index.js b/client/src/store/index.js new file mode 100644 index 0000000..5f05f19 --- /dev/null +++ b/client/src/store/index.js @@ -0,0 +1,12 @@ +import { createStore } from 'vuex' + +export default createStore({ + state: { + }, + mutations: { + }, + actions: { + }, + modules: { + } +}) |