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");
|