一个基于Vue2.0的多页面应用系统。
技术栈包含:Vue、VueX、Vue Router、Element UI。
说明:采用 tabs + router-view 组合来保存各个页面。
1 2 3 4 5 6 7 8 9 10 11 12 |
< main class="mpa-layout-main">
<!-- tabs -->
< el-tabs >
....
</ el-tabs >
<!-- view -->
< div class="mpa-layout-main__view">
< keep-alive :include="menuNameList">
< router-view />
</ keep-alive >
</ div >
</ main >
|
说明:使用 keep-alive 可以缓存各个页面(页面也属于组件)的状态。
注意: keep-alive 要求被切换到的页面都有自己的名字,所以页面组件设置了 name 属性才会被缓存。
1 2 3 4 |
export default {
name: 'studentMgt',
...
}
|
说明:使用scss和css3的颜色变量来实现主题色切换。
1 2 3 4 5 6 7 8 9 |
// index.scss< br >< br >@import './normalize.css';
@import './global.css';
// theme
@import './theme/theme-classic.scss';
@import './theme/theme-red.scss';
// base app
@import './baseApp.scss';
|
说明:系统内置了一个express,运行faker.js(类型mock.js)来模拟数据。
github:https://github.com/polk6/vue2-admin-mpa