您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678910111213141516171819202122
  1. import Vue from 'vue';
  2. import { sync } from 'vuex-router-sync';
  3. import App from './App.vue';
  4. import router from './router';
  5. import store from './store';
  6. require("babel-polyfill");
  7. sync(store, router);
  8. // bind to window
  9. Vue.prototype.t = t;
  10. Vue.prototype.OC = OC;
  11. Vue.prototype.oc_userconfig = oc_userconfig;
  12. const app = new Vue({
  13. router,
  14. store,
  15. render: h => h(App)
  16. }).$mount('#content');
  17. export { app, router, store };