# windows-ui **Repository Path**: yuumigift/windows-ui ## Basic Information - **Project Name**: windows-ui - **Description**: windows-ui 本项目基于 Vue3+ts 开发,模仿 Windows 界面,将原本的路由模式,改为桌面的应用程序模式,每个应用程序都可以最大化、最小化、关闭,窗口拖动等。 在 apps 文件夹下的.vue 文件,可自动识别为应用程序,在桌面配置好应用程序信息,即可通过点击桌面图标打开 - **Primary Language**: TypeScript - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 26 - **Forks**: 3 - **Created**: 2023-09-25 - **Last Updated**: 2025-06-02 ## Categories & Tags **Categories**: Uncategorized **Tags**: Vue ## README # windows-ui ![介绍](https://gitee.com/yuumigift/windows-ui/raw/master/public/img/intro.png) 本项目基于 Vue3+ts 开发,模仿 Windows 界面,将原本的路由模式,改为桌面的应用程序模式,每个应用程序都可以最大化、最小化、关闭,窗口拖动等。 在 apps 文件夹下的.vue 文件,可自动识别为应用程序,在桌面配置好应用程序信息,即可通过点击桌面图标打开 ```js // src/apps/config.ts // 应用程序配置示例 { title: "测试程序", vuePath: "MyTest/Index.vue", icon: "garden.png", }, { title: "星空闪耀", vuePath: "Star/Index.vue", icon: "star.png", }, ``` ### 🍒🍒🍒欢迎各位小伙伴提交自己的奇思妙想~ ## Project Setup ```sh pnpm install ``` ### Compile and Hot-Reload for Development ```sh pnpm dev ``` ### Type-Check, Compile and Minify for Production ```sh pnpm build ```