From cd045df3786f27da264ecc13d7761d2dde3391b2 Mon Sep 17 00:00:00 2001 From: lihui Date: Tue, 26 Aug 2025 10:17:24 +0800 Subject: [PATCH] =?UTF-8?q?feat:=E5=AD=97=E4=BD=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/global.css | 3 +++ src/main.ts | 1 + 2 files changed, 4 insertions(+) create mode 100644 src/global.css diff --git a/src/global.css b/src/global.css new file mode 100644 index 0000000..6ba147f --- /dev/null +++ b/src/global.css @@ -0,0 +1,3 @@ +body { + font-family: 'Microsoft YaHei UI'; +} \ No newline at end of file diff --git a/src/main.ts b/src/main.ts index 3e78e78..fc0b6ca 100644 --- a/src/main.ts +++ b/src/main.ts @@ -15,6 +15,7 @@ import 'vxe-table/lib/style.css' // 修正导入路径 import { useAdminStore } from './store' import request from "@/util/request"; +import "./global.css"; const app = createApp(App) const pinia = createPinia()