16 lines
357 B
JavaScript
16 lines
357 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;
|
|
|
|
new Vue({
|
|
router,
|
|
store,
|
|
render: (h) => h(App),
|
|
}).$mount("#app");
|