feat: add state of min page height in setting module; 🌟

新增:vuex setting 模块增加页面最小高度 state;
This commit is contained in:
chenghongxing
2020-07-25 13:20:25 +08:00
parent 58e81ffad0
commit 768dacdef7
10 changed files with 77 additions and 34 deletions

View File

@@ -10,6 +10,11 @@ const options = {
name: '登录页',
component: Login
},
{
path: '*',
name: '404',
component: () => import('@/pages/exception/404'),
},
{
path: '/',
name: '首页',
@@ -158,17 +163,17 @@ const options = {
children: [
{
path: '404',
name: '404',
name: 'Exp404',
component: () => import('@/pages/exception/404')
},
{
path: '403',
name: '403',
name: 'Exp403',
component: () => import('@/pages/exception/403')
},
{
path: '500',
name: '500',
name: 'Exp500',
component: () => import('@/pages/exception/500')
}
]

View File

@@ -1,6 +1,6 @@
import Vue from 'vue'
import {checkAuthorization} from '@/utils/request'
import Router from 'vue-router'
import {checkAuthorization} from '@/utils/request'
import {options, loginIgnore} from './config'
Vue.use(Router)