From 2547159bbd781c8e1a41ecc939385396c85f9766 Mon Sep 17 00:00:00 2001 From: Riku <risaku@163.com> Date: 星期一, 09 六月 2025 23:35:59 +0800 Subject: [PATCH] 2025.6.9(功能编写中) --- src/main.js | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/src/main.js b/src/main.js index e491791..78f6786 100644 --- a/src/main.js +++ b/src/main.js @@ -1,12 +1,16 @@ import { createApp } from 'vue' import { createPinia } from 'pinia' import * as ElementPlusIconsVue from '@element-plus/icons-vue' +import 'element-plus/theme-chalk/src/dark/css-vars.scss' import App from './App.vue' import router from './router' +import timeUtil from './utils/time-util' const app = createApp(App) +app.config.globalProperties.$fm = timeUtil + // elementUI Icon 娉ㄥ唽 for (const [key, component] of Object.entries(ElementPlusIconsVue)) { app.component(key, component) -- Gitblit v1.9.3