Guest User

Untitled

a guest
Dec 11th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. import Vuex from 'vuex';
  2. ...
  3. // The library I want to share amongst the components
  4. import RunbyLib from './runbylib';
  5. ...
  6. Vue.use(Vuex);
  7.  
  8. const store = new Vuex.Store({
  9. state: {
  10. RunbyLib,
  11. },
  12. mutations: {
  13. },
  14. });
Add Comment
Please, Sign In to add comment