| 123456789101112131415161718192021222324252627282930313233 |
- // 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 '@/components/App.vue';
- // axios
- import '@/config/axios.js';
- // include
- import '@/config/include.js';
- // 通用store
- import store from '@/store/store.js';
- // router
- import router from './router/index.js';
- /* 引入自己写的全局样式 */
- import '~/assets/css/xt/element.css';
- // 导出Excel的方法
- import { PEhandleDownloadExcelForElTable } from '~/utils/personalExtension.js';
- Vue.prototype.PEhandleDownloadExcelForElTable = PEhandleDownloadExcelForElTable;
- // 关闭生产模式下给出的提示
- Vue.config.productionTip = false;
- /* eslint-disable no-new */
- new Vue({
- el: '#app',
- router,
- store,
- components: { App },
- template: '<App/>'
- });
|