# vant-django
**Repository Path**: django-extend/vant-django
## Basic Information
- **Project Name**: vant-django
- **Description**: django admin 的移动端框架(Vant书写)
- **Primary Language**: JavaScript
- **License**: Not specified
- **Default Branch**: main
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 1
- **Forks**: 0
- **Created**: 2021-08-11
- **Last Updated**: 2021-12-14
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
Vant-Django
Django Admin 的移动端框架. 使用
Vant书写
### 后端依赖
> 后端依赖 django-admin-api.
>
> 需要先按照`django-admin-api`的向导建立一个后端项目(假设后端服务已经成功运行在http://localhost:8000)
### 前端项目安装
- 克隆仓库
```bash
git clone https://github.com/django-extend/vant-django.git my-project
cd my-project
```
github不稳定的话,国内可使用码云仓库
```
git clone https://gitee.com/django-extend/vant-django.git my-project
```
- 安装依赖
```
npm install --registry=https://registry.npm.taobao.org
```
也可尝试使用cnpm安装
```
npm install -g cnpm --registry=https://registry.npm.taobao.org
cnpm install
```
- 编译并运行(开发环境)
```
npm run serve
```