index.js 232 B

12345678910111213141516
  1. import Vue from 'vue'
  2. import Vuex from 'vuex'
  3. import common from './modules/common'
  4. import paper from './modules/paper'
  5. Vue.use(Vuex)
  6. export default new Vuex.Store({
  7. modules: {
  8. common,
  9. paper
  10. },
  11. mutations: {
  12. },
  13. })