基于vue-element-admin + django 快速搭建web平台

1. 前端:在vue-admind-template的基础上写我们的前端代码,对于想要实现的简单的前端组件(表格,弹框,表单等等)先去element组件库里copy,对于想要实现的复杂的前端组件(图表,编辑器)就去vue-element-admin这个项目中copy

2. 后端:使用django来搭建我们的后端,配合django-rest-framework来写接口,5行代码就能完成了一张数据库表格的增删改查。

3. 部署上线:使用django的官方镜像把服务部署到docker上,连配置环境的时间都节省了。

 

Element

https://element.eleme.cn/#/zh-CN/component/installation

 

Vue-Admin-Template

源代码:https://github.com/PanJiaChen/vue-admin-template

体验地址:https://panjiachen.github.io/vue-admin-template/#/dashboard

 

Vue-Element-Admin

源代码:https://github.com/PanJiaChen/vue-element-admin

体验地址:https://panjiachen.gitee.io/vue-element-admin/#/table/complex-table

文档地址:https://panjiachen.gitee.io/vue-element-admin-site/zh/guide/#%E5%8A%9F%E8%83%BD

 

Django:

官网:https://www.djangoproject.com/

英文教程:https://docs.djangoproject.com/en/

中文教程:https://code.ziqiangxuetang.com/django/django-intro.html

docker镜像:https://hub.docker.com/_/django

你可能感兴趣的:(基于vue-element-admin + django 快速搭建web平台)