shuinichang_/.history/src/main_20231122151013.js

16 lines
377 B
JavaScript

import Vue from "vue";
import App from "./App.vue";
import "./registerServiceWorker";
import router from "./router";
import * as echarts from 'echarts';
import store from "./store";
// 动态设置根元素html字体大小
// import "lib-flexible";
Vue.config.productionTip = false;
// Vue.use(echarts);
new Vue({
router,
store,
render: (h) => h(App),
}).$mount("#app");