From c1129faa1b6aaf08446e9cf0a2eeaaa54d3c7041 Mon Sep 17 00:00:00 2001
From: zhangchen <1652267879@qq.com>
Date: 星期一, 01 九月 2025 15:53:26 +0800
Subject: [PATCH] ID1766-添加设备长识别二维码

---
 src/main.ts |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/src/main.ts b/src/main.ts
index 9147bbe..267b11f 100644
--- a/src/main.ts
+++ b/src/main.ts
@@ -9,11 +9,13 @@
 import App from './App.vue'
 import VConsole from 'vconsole'
 import { createPinia } from 'pinia'
-
+import '@/assets/css/iconfont.css'
 if (import.meta.env.VITE_ENV === 'development') {
 // 如果需要在手机平板上打开控制台,安装一个这个
     const vConsole = new VConsole()
 }
 const pinia = createPinia()
 
-createApp(App).use(router).use(pinia).use(ElementPlus).use(Vant).mount('#app')
+const app = createApp(App)
+
+app.use(router).use(pinia).use(ElementPlus).use(Vant).mount('#app')

--
Gitblit v1.8.0