Move src to dashboard (#152)
This commit is contained in:
28
app/javascript/dashboard/store/index.js
Executable file
28
app/javascript/dashboard/store/index.js
Executable file
@@ -0,0 +1,28 @@
|
||||
import Vue from 'vue';
|
||||
import Vuex from 'vuex';
|
||||
|
||||
import * as getters from './getters';
|
||||
|
||||
import auth from './modules/auth';
|
||||
import conversations from './modules/conversations';
|
||||
import sideMenuItems from './modules/sidebar';
|
||||
import AccountState from './modules/AccountState';
|
||||
import Channel from './modules/channels';
|
||||
import cannedResponse from './modules/cannedResponse';
|
||||
import reports from './modules/reports';
|
||||
import billing from './modules/billing';
|
||||
|
||||
Vue.use(Vuex);
|
||||
export default new Vuex.Store({
|
||||
getters,
|
||||
modules: {
|
||||
auth,
|
||||
conversations,
|
||||
sideMenuItems,
|
||||
AccountState,
|
||||
Channel,
|
||||
cannedResponse,
|
||||
reports,
|
||||
billing,
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user