Add files via upload

This commit is contained in:
QWQLwToo
2026-01-28 13:26:17 +08:00
committed by GitHub
parent 7030903eb6
commit 151c1c2387
29 changed files with 12656 additions and 2 deletions
+16
View File
@@ -0,0 +1,16 @@
import { createApp } from 'vue';
import App from './App.vue';
import './style.less';
import { MotionPlugin } from '@vueuse/motion';
import router from './router';
import { loadAndApplyFrontendConfig } from './utils/frontendConfig';
// 加载前端配置
loadAndApplyFrontendConfig();
const app = createApp(App);
app.use(MotionPlugin);
app.use(router);
app.mount('#app');