重命名前端项目目录:web-flowith -> web

- 将前端项目目录从 web-flowith 重命名为 web,使目录结构更简洁
- 保持所有前端代码和配置文件不变
- 统一项目目录命名规范
This commit is contained in:
2025-07-24 22:20:19 +08:00
parent ca42a7d9a4
commit bbe8fcd776
57 changed files with 0 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
import { createApp } from 'vue'
import App from './App.vue'
import router from './router'
import pinia from './stores'
// Ant Design Vue
import Antd from 'ant-design-vue'
import 'ant-design-vue/dist/reset.css'
// 全局样式
import '@/assets/styles/global.scss'
// 创建应用实例
const app = createApp(App)
// 使用插件
app.use(pinia)
app.use(router)
app.use(Antd)
// 挂载应用
app.mount('#app')