First init

This commit is contained in:
saplf
2018-09-28 15:20:43 +08:00
commit a8fabb15fd
27 changed files with 332 additions and 0 deletions

8
src/store/chain.js Normal file
View 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
View 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
View 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
View 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
View 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
View File

@@ -0,0 +1,8 @@
import Vuex from 'vuex'
export default new Vuex.Store({
state: {},
mutations: {},
actions: {},
getters: {},
})