選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

17 行
348B

  1. import Vue from 'vue'
  2. import App from './App.vue'
  3. import router from './router'
  4. import store from './store'
  5. import rem from './plugins/rem'
  6. Vue.use(rem);
  7. import {stopPullDown } from './utils/common';
  8. Vue.prototype.$stopPullDown = stopPullDown;
  9. Vue.config.productionTip = false
  10. new Vue({
  11. router,
  12. store,
  13. render: h => h(App)
  14. }).$mount('#app')