邃芒官网、邃芒慧影、口播(H5) https://m.metavatar.cc
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

20 lines
408 B

  1. import Vue from 'vue'
  2. import App from './App.vue'
  3. // import './registerServiceWorker'
  4. import router from './router'
  5. import store from './store'
  6. import 'vant/lib/index.css'
  7. import '@/assets/style/index.css'
  8. import 'amfe-flexible'
  9. import axios from "axios"
  10. Vue.config.productionTip = false
  11. Vue.prototype.$axios = axios
  12. new Vue({
  13. router,
  14. store,
  15. render: function (h) { return h(App) }
  16. }).$mount('#app')