123456789101112131415161718192021222324252627282930313233343536373839404142 |
- import Vue from 'vue'
- import 'normalize.css/normalize.css'// A modern alternative to CSS resets
- import ElementUI from 'element-ui'
- import 'element-ui/lib/theme-chalk/index.css'
- import locale from 'element-ui/lib/locale/lang/zh-CN' // lang i18n
- import VCharts from 'v-charts'
- import '@/styles/index.scss' // global css
- import App from './App'
- import router from './router'
- import store from './store'
- import '@/icons' // icon
- import '@/permission' // permission control
- import { download } from '@/utils/request'
- // 导出Excel函数
- import { exportExcel } from "@/utils/exportexcel";
- Vue.prototype.exportExcel = exportExcel;
- Vue.prototype.download = download
- //下载资源文件
- import { downloadExcel } from '@/utils/downloadExcel'
- Vue.prototype.downloadExcel = downloadExcel
- Vue.use(ElementUI, { locale })
- Vue.use(VCharts)
- Vue.config.productionTip = false
- new Vue({
- el: '#app',
- router,
- store,
- template: '<App/>',
- components: { App }
- })
|