| | |
| | | import Vue from 'vue'; |
| | | import ElementUI from 'element-ui'; |
| | | import 'element-ui/lib/theme-chalk/index.css'; |
| | | import "@/assets/css/element-variables.scss"; |
| | | |
| | | import App from './App.vue' |
| | | import "../../../assets/css/common.scss" |
| | | |
| | | import moment from "moment"; |
| | | Vue.prototype.$moment = moment; |
| | | |
| | | import Mixin from "./mixins"; |
| | | Vue.mixin(Mixin); |
| | | |
| | | import ElementUI from 'element-ui'; |
| | | import "@/assets/css/element-variables.scss"; |
| | | import 'element-ui/lib/theme-chalk/index.css'; |
| | | Vue.use(ElementUI) |
| | | |
| | | import preview from 'vue-photo-preview' |
| | | import 'vue-photo-preview/dist/skin.css' |
| | | Vue.use(preview) |
| | | |
| | | import * as VueWindow from "@hscmap/vue-window"; |
| | | Vue.use(VueWindow); |
| | | |