# project-template **Repository Path**: chokingwin/project-template ## Basic Information - **Project Name**: project-template - **Description**: 前端工程模板。作为脚手架的拉取仓库。 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-03-01 - **Last Updated**: 2021-03-03 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # md-fe project template ## Description 前端工程模板。 ## Getting Started Install dependencies, ```bash $ yarn ``` Start the dev server, ```bash $ yarn start ``` ## 目录结构 ``` ├── README.md ├── mock ├── package.json ├── scripts │ ├── ali-oss-config.js 阿里OSS脚本相关文件 │ ├── ali-oss-upload.js 阿里OSS脚本相关文件 │ └── deploy-ali-oss.js 阿里OSS脚本相关文件 ├── src │ ├── components 组件 │ │ ├── ImportLoading │ │ │ └── index.tsx │ │ ├── Loading │ │ │ ├── index.less │ │ │ └── index.tsx │ │ └── Modal │ │ ├── index.less │ │ └── index.tsx │ ├── global.less 全局样式 │ ├── layout 布局 │ │ ├── index.less │ │ └── index.tsx │ ├── models models │ │ └── index.ts │ ├── pages pages,匹配自动生成路由 │ │ ├── example │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── index.less │ │ └── index.tsx │ ├── services services │ │ └── index.tsx │ └── utils 工具包 │ ├── domain-config.ts │ ├── localStorage.ts │ ├── request.ts │ ├── sessionStorage.ts │ ├── tip-template.tsx │ ├── tip.tsx │ └── utils.ts ├── tsconfig.json └── typings.d.ts ```