Advertisement
Guest User

Untitled

a guest
Oct 8th, 2019
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import Vue from 'vue';
  2. import Vuex from 'vuex';
  3. import logbook from './logbook';
  4.  
  5. Vue.use(Vuex);
  6. export default function (/* { ssrContext } */) {
  7.   const Store = new Vuex.Store({
  8.     modules: {
  9.       logbook,
  10.     },
  11.     strict: process.env.DEV,
  12.   });
  13.   return Store;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement