Update .gitignore and add files

This commit is contained in:
jrhlh
2025-07-17 23:13:04 +08:00
commit 39cedd4073
257 changed files with 34603 additions and 0 deletions

16
platform/src/main.ts Normal file
View File

@ -0,0 +1,16 @@
// main.js
import { createApp } from 'vue';
import App from './App.vue';
import { createPinia } from 'pinia';
import router from './router'; // 引入配置好的路由
import ElementPlus from 'element-plus';
import 'element-plus/dist/index.css';
import './style.css';
const app = createApp(App);
app.use(createPinia()); // 安装 Pinia
app.use(router); // 安装 Vue Router
app.use(ElementPlus); // 安装 Element Plus (如果有的话)
app.mount('#app');