From 50ee7232f3c98fe24a1f2e31dba9508cfec14887 Mon Sep 17 00:00:00 2001 From: gjj <Ganjj@probim.com.cn> Date: Fri, 21 Feb 2025 17:35:39 +0800 Subject: [PATCH] 模型预览 --- src/main.js | 29 +++++++++++++++++++++++++++++ 1 files changed, 29 insertions(+), 0 deletions(-) diff --git a/src/main.js b/src/main.js new file mode 100644 index 0000000..4988e8e --- /dev/null +++ b/src/main.js @@ -0,0 +1,29 @@ +import Vue from "vue"; + +//todo:更改为按需引入 +import ElementUI from "element-ui"; +import "element-ui/lib/theme-chalk/index.css"; +Vue.use(ElementUI); + +import { http } from "./utils/http.js"; +Vue.prototype.$http = http; + +import store from "./store/index"; +import router from "./router"; +import App from "./App.vue"; + +import "@css/DIN_font.css"; +import "@css/tail-wind/index.css"; +import "@css/element-ui-override.scss"; +import "@css/self-global.scss"; + + +Vue.config.productionTip = false; + +new Vue({ + store, + router, + render: (h) => { + return h(App); + }, +}).$mount("#app"); -- Gitblit v1.9.3