bitsky-business
v0.0.0
Published
<!-- * @Author: rock [email protected] * @Date: 2025-04-25 14:53:24 * @LastEditors: rock [email protected] * @LastEditTime: 2025-04-25 15:52:37 * @FilePath: \bitsky-business\README.md * @Description: * * Copyright (c) 2025 by ${git_name_emai
Readme
Vue 3 + TypeScript + Vite + Antdv + Pinia + Vue-Router4
This template should help get you started developing with Vue 3 and TypeScript in Vite. The template uses Vue 3 <script setup> SFCs, check out the script setup docs to learn more.
Learn more about the recommended Project Setup and IDE Support in the Vue Docs TypeScript Guide.
node
versor: v20.18.0
使用:PNPM
安装:npm install pnpm -g
设置下载源(淘宝或其他源):pnpm config set registry https://registry.npmmirror.com/
查看当前源:pnpm config get registry
安装依赖:pnpm install
程序运行:pnpm run dev
文件解构
bitsky-business
├──src │ ├── api # 接口请求 │ ├── assets # 资源(图片,样式,字体等) │ ├── components # Vue 组件 │ ├── layouts # 布局组件 │ ├── stores # 状态管理 │ ├── views # 页面视图 │ ├── App.vue # 根组件 │ ├── main.ts #入口文件 │ ├── router # 路由配置 │ └── utils # 工具类 ├── tests # 测试文件 ├── .env # 环境变量 ├── tsconfig.json # TypeScript 配置 ├── README.md # 项目说明 ├── package.json # 项目依赖和脚本 └── vite.config.ts # Vite 配置
快速删除node-modules方法
npm install rimraf -g
rimraf node_modules
