健康同学微信公众号h5项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
123456789101112131415
  1. import Vue from 'vue';
  2. import Vuex from 'vuex';
  3. import getters from './getters';
  4. import app from './modules/app';
  5. Vue.use(Vuex);
  6. const store = new Vuex.Store({
  7. modules: {
  8. app
  9. },
  10. getters
  11. });
  12. export default store;