Private
Public Access
1
0

新增:连接管理、数据查询等功能

This commit is contained in:
2026-01-22 18:34:59 +08:00
parent 95d3a20292
commit 652f5e5d60
87 changed files with 15082 additions and 162 deletions

View File

@@ -1,10 +1,15 @@
import { createApp } from 'vue'
import {createApp} from 'vue'
import ArcoVue from '@arco-design/web-vue'
import '@arco-design/web-vue/dist/arco.css'
import './style.css'
import App from './App.vue'
import {initTheme} from './composables/useTheme'
const app = createApp(App)
app.use(ArcoVue)
// 在应用挂载前初始化主题
initTheme()
app.mount('#app')