1
Surpriseplus
2022-09-16 8d1a91c23df335b090e38b2edd15203aa3b03da9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import Vue from "vue";
import "./assets/css/global.css";
 
import store from "./store";
 
// px2rem 自适应
import "lib-flexible";
import "./rem";
import axios from "./http";
import ElementUI from "element-ui";
import "element-ui/lib/theme-chalk/index.css";
import scroll from "vue-seamless-scroll";
import * as echarts from "echarts";
import App from "./App.vue";
import router from "./router";
 
// import Video from "video.js"
// import 'video.js/dist/video-js.css'
 
// Vue.prototype.$video = videojs;
Vue.prototype.$echarts = echarts;
Vue.use(scroll);
Vue.use(ElementUI);
Vue.prototype.bus = new Vue();
Vue.prototype.$http = axios;
Vue.config.productionTip = false;
new Vue({
  router,
  store,
  render: (h) => h(App),
}).$mount("#app");