基于AmazeUI-admin 模板。
bingoJS2.x使用bingoJS2.x 前端MV开始。
demo在线demo
PS:基于AmazeUI(amdin)+bingoJS2.x实现模块化单页面(SPA),这里主要演示如何使用bingoJS搭建前端SPA工程,规划和定义服务、指令和route的转发等,拿来即用,依靠纯JS搭建浏览端系统,尽量减少对构建工具的依赖;
安装/使用:遵循以下4个简单的步骤,就能使用demo
步骤1:Clone内容
$ git clone https://github.com/guless/AmazeUI-bjs.git AmazeUI-bjs步骤2:进入bingoJS2目录
$ cd AmazeUI-bjs步骤3:Installdependencies
$ npm install步骤4:启动demo
$ npm start目录结构:│ index.html ├─demo │ │ index.html │ │ route.js │ │ │ ├─api│ ├─commands│ ├─modules│ ├─services│ └─tmpls│└─statics ├─AmazeUI └─bingoindex.html:为首页
demo目录:演示demoapp
demo/index.html:demo首页
demo/route.js:demoroute配置
demo/api目录:模板数据加载的josn文件
demo/commands目录:指令定义与模板
demo/modules目录:业务代码与模板
demo/services目录:服务定义
statics/AmazeUI目录:AmazeUI的相关资源
评论