// 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/GLOBAL'; 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: '', })