powersir 481d857eac | il y a 1 an | |
---|---|---|
build | il y a 1 an | |
mock | il y a 1 an | |
public | il y a 1 an | |
src | il y a 1 an | |
types | il y a 1 an | |
.env | il y a 1 an | |
.env.development | il y a 1 an | |
.env.production | il y a 1 an | |
.eslintrc.cjs | il y a 1 an | |
.gitignore | il y a 1 an | |
README.md | il y a 1 an | |
index.html | il y a 1 an | |
package.json | il y a 1 an | |
tailwind.config.js | il y a 1 an | |
tsconfig.json | il y a 1 an | |
tsconfig.node.json | il y a 1 an | |
vite.config.ts | il y a 1 an |
技术框架: React + TypeScript + antd + Vite
├── public
│ └── vite.svg
├── src
│ └── assets 公共资源
│ ├── components 页面组件
│ ├── router 路由模块
│ ├── hooks react hooks
│ ├── layout 页面布局
│ ├── models 数据模型
│ ├── pages 业务代码
│ ├── request 处理axios的封装和调用
│ ├── store 数据持久化和状态管理
│ ├── utils 公共方法或常量
│ ├── App.css
│ ├── App.tsx
│ ├── index.css
│ └── main.tsx
├── index.html
├── package.json
└── vite.config.js
pnpm install(推荐使用pnpm)
pnpm start 或 pnpm run dev
pnpm build
pnpm preview