北京经济技术开发区经开区虚拟城市项目-【前端】-移动端Web
lixuliang
2024-03-15 0b957a16bbe87c53f75140402987b81766f1ee1f
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
// The Vue build version to load with the `import` command
// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
import Vue from 'vue'
import App from './App'
import router from './router'
import vueLayer from 'vue-layer'
import 'animate.css'
import './assets/until/directives'
import elementUI from 'element-ui'
import 'element-ui/lib/theme-chalk/index.css'
import './assets/plugin/ztreev3/css/bootstrapStyle/bootstrapStyle.css'
import animated from "animate.css"
import "./js/rem"
import vcolorpicker from 'vcolorpicker'
import _GLOBAL from '@/assets/GLOBAL2';
Vue.use(vcolorpicker);
Vue.use(animated);
window.sgworld = null;
window.viewer = null;
window.alpha = 1;
Vue.prototype.Layer = vueLayer(Vue);
Vue.prototype.$global = _GLOBAL
Vue.use(elementUI);
Vue.config.productionTip = false
/* eslint-disable no-new */
new Vue({
  el: '#app',
  router,
  components: { App },
  template: '<App/>',
})