wangrong
2021-11-24 130b72d6c5734f8acaac0214b6dfe5c8bfa319c3
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import Vue from "vue";
import App from "./App.vue";
import router from "./router";
import store from "./store";
import "./common/base.scss";
 
import ElementUI from "element-ui";
import "element-ui/lib/theme-chalk/index.css";
import VCharts from "v-charts";
import echarts from "echarts";
 
import VideoPlayer from "vue-video-player";
import VueSocketIO from "vue-socket.io";
//import css
import "vue-beauty/package/style/vue-beauty.min.css";
 
//import components
import vueBeauty from "vue-beauty";
 
import '@/icons' // icon
 
import html2canvas from 'html2canvas';
import './utils/directives.js'
Vue.use(html2canvas);
 
Vue.use(
  new VueSocketIO({
    debug: true,
    connection: "ws://wiibox.xicp.io:3030",
  })
);
 
 
Vue.use(vueBeauty);
 
Vue.use(VideoPlayer);
 
Vue.prototype.$echarts = echarts;
 
import { getJSON, post, patch, put, getDS, DSpost } from "./utils/request";
 
Vue.prototype.$getDS = getDS;
Vue.prototype.$post = post;
Vue.prototype.$DSpost = DSpost;
Vue.prototype.$getJSON = getJSON;
Vue.prototype.$patch = patch;
Vue.prototype.$put = put;
 
Vue.use(ElementUI);
Vue.use(VCharts);
 
Vue.config.productionTip = false;
 
new Vue({
  router,
  store,
  render: (h) => h(App),
}).$mount("#app");