First init
This commit is contained in:
8
src/store/chain.js
Normal file
8
src/store/chain.js
Normal file
@@ -0,0 +1,8 @@
|
||||
import Vuex from 'vuex'
|
||||
|
||||
export default new Vuex.Store({
|
||||
state: {},
|
||||
mutations: {},
|
||||
actions: {},
|
||||
getters: {},
|
||||
})
|
||||
15
src/store/index.js
Normal file
15
src/store/index.js
Normal file
@@ -0,0 +1,15 @@
|
||||
import Vue from 'vue'
|
||||
import Vuex from 'vuex'
|
||||
import chain from './chain'
|
||||
import market from './market'
|
||||
import network from './network'
|
||||
import owner from './owner'
|
||||
|
||||
Vue.use(Vuex)
|
||||
|
||||
export default new Vuex.Store({
|
||||
chain,
|
||||
owner,
|
||||
market,
|
||||
network,
|
||||
})
|
||||
8
src/store/market.js
Normal file
8
src/store/market.js
Normal file
@@ -0,0 +1,8 @@
|
||||
import Vuex from 'vuex'
|
||||
|
||||
export default new Vuex.Store({
|
||||
state: {},
|
||||
mutations: {},
|
||||
actions: {},
|
||||
getters: {},
|
||||
})
|
||||
8
src/store/network.js
Normal file
8
src/store/network.js
Normal file
@@ -0,0 +1,8 @@
|
||||
import Vuex from 'vuex'
|
||||
|
||||
export default new Vuex.Store({
|
||||
state: {},
|
||||
mutations: {},
|
||||
actions: {},
|
||||
getters: {},
|
||||
})
|
||||
8
src/store/node.js
Normal file
8
src/store/node.js
Normal file
@@ -0,0 +1,8 @@
|
||||
import Vuex from 'vuex'
|
||||
|
||||
export default new Vuex.Store({
|
||||
state: {},
|
||||
mutations: {},
|
||||
actions: {},
|
||||
getters: {},
|
||||
})
|
||||
8
src/store/owner.js
Normal file
8
src/store/owner.js
Normal file
@@ -0,0 +1,8 @@
|
||||
import Vuex from 'vuex'
|
||||
|
||||
export default new Vuex.Store({
|
||||
state: {},
|
||||
mutations: {},
|
||||
actions: {},
|
||||
getters: {},
|
||||
})
|
||||
Reference in New Issue
Block a user