A Vue.js background manager scaffolding base vue.js(1.0.x) + Semantic UI + vue-router + vue-loader + webpack + vue-resource + vue-validator + vuex
A Vue.js background manager scaffolding base vue.js(1.0.x) + Semantic UI + vuex + vue-router + vue-resource(whatwg-fetch) + vue-validator + vue-loader + webpack
使用Vue.js作为基础框架,Semantic UI作为UI层,实现了一个后台管理系统的基础框架。可以基于此框架实现功能复杂的后台管理系统。
点此查看运行效果(登录名:admin,密码:admin)
※ 已基于 vue2 + webpack2 + elementUI 实现了一套全新的后台管理框架,具体请移步 [https://github.com/rootsli/vue2admin] (https://github.com/rootsli/vue2admin)查看
# install dependencies
npm install
# serve with hot reload at localhost:8080
npm run dev
# build for production with minification
npm run build
# run unit tests
npm run unit
# run e2e tests
npm run e2e
# run all tests
npm test
本项目虽然使用的是semantic-ui-css,但是由于Semantic UI 默认使用的是谷歌提供的字体,并且是直接使用了谷歌的官方链接。因此建议对css进行本地化定制,使用定制后编译生成的文件替换semantic-ui-css中的文件。
具体定制方法请参考Semantic UI官方文档,主要变更如下:
...
<breadcrumb :paths="paths"></breadcrumb> <!-- 面包屑 -->
<div class="page-container"> <!-- 内容区 -->
<h3 class="ui header">标题</h3> <!-- 标题 -->
<div style="height:95%;overflow:auto;"> <!-- 主内容 -->
<div class="ui basic segment"> <!-- 内容段,可以包含多个,至少包含一个 -->
<!-- 内容区1 -->
</div>
<div class="ui basic segment">
<!-- 内容区2 -->
</div>
</div>
</div>
...
登录界面
表格示例
表单
基本图形