# 谈判助手 **Repository Path**: ai-code-studio/negotiating_assistant ## Basic Information - **Project Name**: 谈判助手 - **Description**: 描述?这个应该要咋写 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-04-11 - **Last Updated**: 2024-05-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # VueUnity [![Fork me on Gitee](https://gitee.com/ai-code-studio/vue-unity/widgets/widget_3.svg)](https://gitee.com/ai-code-studio/vue-unity) [![star](https://gitee.com/ai-code-studio/vue-unity/badge/star.svg?theme=dark)](https://gitee.com/ai-code-studio/vue-unity/stargazers) [![fork](https://gitee.com/ai-code-studio/vue-unity/badge/fork.svg?theme=dark)](https://gitee.com/ai-code-studio/vue-unity/members) 这个模板可以帮助你开始使用 Vue 3 在 Vite 中进行开发。 ## 推荐的 IDE 设置 [VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar)(并且禁用 Vetur)。 ## TypeScript 对 `.vue` 导入的类型支持 默认情况下 TypeScript 无法处理 `.vue` 导入的类型信息,因此我们用 `vue-tsc` 替换了 `tsc` 命令行工具来进行类型检查。在编辑器中,我们需要 [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) 来让 TypeScript 语言服务能够识别 `.vue` 类型。 ## 自定义配置 请参阅 [Vite 配置参考](https://vitejs.dev/config/)。 ## 项目设置 ```sh pnpm install ``` ### 编译和热重载以供开发 ```sh pnpm dev ``` ### 代码格式化(在提交 git 之前需要) ```sh pnpm format ``` ### 类型检查、编译和压缩以供生产 ```sh pnpm build ``` ### 使用 [Vitest](https://vitest.dev/) 运行单元测试 ```sh pnpm test:unit ``` ### 使用 [Cypress](https://www.cypress.io/) 运行端到端测试 ```sh pnpm test:e2e:dev ``` 这会针对 Vite 开发服务器运行端到端测试。相比于生产构建,速度要快得多。 但是在部署之前仍建议使用 `test:e2e` 来测试生产构建(例如在 CI 环境中): ```sh pnpm build pnpm test:e2e ``` ### 使用 [ESLint](https://eslint.org/) 进行代码检查 ```sh pnpm lint ``` ### 使用 preview 预览打包后的结果 ```sh pnpm preview ```