feat: add state of min page height in setting module; 🌟
新增:vuex setting 模块增加页面最小高度 state;
This commit is contained in:
@@ -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')
|
||||
}
|
||||
]
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user