<!--
 * @Author: 文贝
 * @Date: 2021-12-20 18:50:18
 * @LastEditors: 文贝
 * @LastEditTime: 2022-04-24 23:21:27
 * @Description: 
 * @FilePath: \templates\vue-imedx-hash-template\README.md
-->
# app-vue-hash

IMedx的hash模式路由的子应用开发模板

## Project setup
```
npm install
```

### Compiles and hot-reloads for development
```
npm run serve
```

### Compiles and minifies for production
```
npm run build
```

### Open Template Route
```
http://localhost:<port>/#/test-demo1
http://localhost:<port>/#/test-demo2
```

### Create Project From This Template，Example：ics-user-manager(用户管理)其中《[ics-user-manager](http://store.icreatesoft.com:1911/V7-Framework/ics-user-manager.git)》需要向项目经理申请创建好的仓库地址
* 克隆模板
```
git clone http://store.icreatesoft.com:1911/V7-Framework/app-vue-hash-template.git ics-user-manager
```
* 切换到项目目录
```
cd ics-user-manager
```
* 移除模板项目远程仓库
```
git remote rm origin
```
* 关联项目远程仓库
```
git remote add origin http://store.icreatesoft.com:1911/V7-Framework/ics-user-manager.git
```
* 推送到项目仓库
```
git push -u origin master
```