|
-
-
- import 'core-js/stable';
- import 'regenerator-runtime/runtime';
-
- import Vue from 'vue';
- import App from './App.vue';
- import router from './router';
- import store from './store/index';
-
- import { $cdn } from '@/config';
- Vue.prototype.$cdn = $cdn;
- import dayjs from 'dayjs';
-
- import * as echarts from 'echarts';
-
- import '@/plugins/vant';
-
- import '@/assets/css/index.scss';
-
- import 'amfe-flexible';
- Vue.prototype.$dayjs = dayjs;
- Vue.prototype.$echarts = echarts;
- Vue.prototype.$store = store;
-
-
- import './filters';
- Vue.config.productionTip = false;
-
- new Vue({
- el: '#app',
- router,
- store,
- render: h => h(App)
- });
|